blob: 194d41239eceb86c0620d4f933b7ab519f4a696a [file] [log] [blame]
###############################################################################
# Copyright (c) 2008 IONA Technologies PLC
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# IONA Technologies PLC - initial API and implementation
###############################################################################
#JDTUtils
TYPE_NAME_DIFFERENT_CASE_EXISTS=A Type with the same name but different case already exists
TYPE_WITH_NAME_ALREADY_EXISTS=A compilation unit named ''{0}'' already exists in package ''{1}''
WEBSERVICE_DEFAULT_PUBLIC_CONSTRUCTOR_MESSAGE=Classes annotated with @WebService must have a default public constructor
WEBSERVICE_PUBLIC_ABSTRACT_FINAL_MESSAGE=Classes annotated with @WebService must be an outer public class, must not be final, and must not be abstract
WEBSERVICE_OVERRIDE_FINALIZE_MESSAGE=Classes annotated with @WebService must not define a finalize() method
WEBMETHOD_ONLY_SUPPORTED_ON_CLASSES_WITH_WEBSERVICE_MESSAGE=@WebMethod is only supported on classes annotated with @WebService
WEBMETHOD_ONLY_ON_PUBLIC_METHODS_MESSAGE=@WebMethod annotation is not allowed on non-public methods
WEBMETHOD_NO_FINAL_MODIFIER_ALLOWED_MESSAGE=@WebMethod annotation is not allowed on final methods
WEBMETHOD_NO_STATIC_MODIFIER_ALLOWED_MESSAGE=@WebMethod annotation is not allowed on static methods
WEBMETHOD_EXCLUDE_SPECIFEID_NO_OTHER_ATTRIBUTES_ALLOWED_MESSAGE=@WebMethod exclude attribute is specified. No other attributes allowed
WEBMETHOD_EXCLUDE_NOT_ALLOWED_ON_SEI=@WebMethod annotations in SEI's are not allowed to specify the exclude attribute
WEBSERVICE_SERVICENAME_SEI_ERROR_MESSAGE=@WebService serviceName element is not allowed on SEI
WEBSERVICE_ENDPOINTINTERFACE_SEI_ERROR_MESSAGE=@WebService endpointInterface element is not allowed on SEI
WEBSERVICE_PORTNAME_SEI_ERROR_MESSAGE=@WebService portName element is not allowed on SEI
WEBSERVICE_ENPOINTINTERFACE_NOT_FOUND_ERROR_MESSAGE=The referenced endpointInterface cannot be found
WEBSERVICE_ENPOINTINTERFACE_NOT_ANNOTATED_ERROR_MESSAGE=The referenced endpointInterface must be annotated with @javax.jws.WebService
WEBSERVICE_ENPOINTINTERFACE_NOT_PUBLIC_ERROR_MESSAGE=The referenced endpointInterface must be public
WEBSERVICE_ENPOINTINTERFACE_NOT_OUTER_ERROR_MESSAGE=The referenced endpointInterface must be an outer interface
WEBSERVICE_ENPOINTINTERFACE_NO_NAME_ATTRIBUTE_ERROR_MESSAGE=@WebService annotation contains an endpointInterface attribute. No name attribute allowed
WEBSERVICE_ENPOINTINTERFACE_NO_WEBMETHODS_ERROR_MESSAGE=@WebService annotation contains an endpointInterface attribute. No methods annotated with @WebMethod allowed in implementation class
WEBSERVICE_ENPOINTINTERFACE_NO_SOAPBINDING_MESSAGE=@WebService annotation contains an endpointInterface attribute. @SOAPBinding not allowed in implementation class
WEBSERVICE_ENPOINTINTERFACE_NO_WEBRESULT_ERROR_MESSAGE=@WebService annotation contains an endpointInterface attribute. No methods annotated with @WebResult allowed in implementation class
WEBSERVICE_ENPOINTINTERFACE_NO_WEBPARAM_ERROR_MESSAGE=@WebService annotation contains an endpointInterface attribute. No parameters annotated with @WebParam allowed in implementation class
WEBSERVICE_ENPOINTINTERFACE_NO_ONEWAY_ERROR_MESSAGE=@WebService annotation contains an endpointInterface attribute. No methods annotated with @Oneway allowed in implementation class
WEBSERVICE_WEBSERVICEPROVIDER_COMBINATION_ERROR_MESSAGE=@WebService and @WebServiceProvider annotations cannot both be present on the same class
ONEWAY_NO_RETURN_VALUE_ERROR_MESSAGE=@Oneway methods must not return a value
ONEWAY_NO_CHECKED_EXCEPTIONS_ERROR_MESSAGE=@Oneway methods must not declare any checked exceptions
ONEWAY_NO_HOLDER_PARAMETERS=@Oneway methods must not accept any javax.xml.ws.Holder<T> parameters.
WEBPARAM_MODE_OUT_INOUT_HOLDER_TYPE_ERROR_MESSAGE=The @WebParam.Mode.OUT and @WebParam.Mode.INOUT modes may only be specified for javax.xml.ws.Holder<T> parameters
HOLDER_TYPE_MUST_BE_OUT_INOUT_ERROR_MESSAGE=javax.xml.ws.Holder<T> parameters must be @WebParam.Mode.OUT or @WebParam.Mode.INOUT
SOAPBINDING_ON_METHOD_STYLE_DOCUMENT_ONLY_MESSAGE=The @SOAPBinding annotation may be placed on a method if and only if the SOAPBinding.style is DOCUMENT
SOAPBINDING_NO_PARAMETERSTYLE_WHEN_ENCODED_MESSAGE=A method that has a SOAPBinding.use of ENCODED cannot have a SOAPBinding.parameterStyle present
#DOC_BARE_ONE_NON_HEADER_IN_PARAMETER_ERROR_MESSAGE=Document literal bare methods must have one non-header IN parameter
DOC_BARE_ONLY_ONE_NON_HEADER_IN_PARAMETER_ERROR_MESSAGE=Document literal bare methods may have only one non-header IN parameter
DOC_BARE_NON_VOID_RETURN_NO_INOUT_OUT_PARAMETER=Document literal bare methods that declare a non-void return value may not have any OUT or INOUT parameters
DOC_BARE_VOID_RETURN_ONE_IN_PARAMETER=Document literal bare methods that declare a void return value may have only one IN/INOUT parameter
DOC_BARE_VOID_RETURN_ONE_OUT_PARAMETER=Document literal bare methods that declare a void return value may have only one OUT/INOUT parameter
WEBPARAM_NAME_REQUIRED_WHEN_DOC_BARE_OUT_INOUT=The @WebParam name attribute is required when the operation is Document Bare and the mode is OUT or INOUT
####
OPERATION_NAMES_MUST_BE_UNIQUE_ERROR_MESSAGE=Operation names must be unique. Use @WebMethod.operationName to resolve conflicts
WRAPPER_BEAN_NAMES_MUST_BE_UNIQUE_ERROR_MESSAGE=Request and Response Wrapper Beans must have unique className attributes
FAULT_BEAN_NAMES_MUST_BE_UNIQUE_ERROR_MESSAGE=Referenced Exceptions contain @WebFault annotations with non-unique faultBean attributes
DOC_BARE_METHODS_UNIQUE_XML_ELEMENTS_ERROR_MESSAGE=Document Literal Bare methods must have unique XML elements for the input and output messages across all operations