src/share/jaxws_classes/com/sun/xml/internal/ws/resources/ModelerMessages.java

Thu, 31 Aug 2017 15:18:52 +0800

author
aoqi
date
Thu, 31 Aug 2017 15:18:52 +0800
changeset 637
9c07ef4934dd
parent 368
0989ad8c0860
parent 0
373ffda63c9a
permissions
-rw-r--r--

merge

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation. Oracle designates this
aoqi@0 8 * particular file as subject to the "Classpath" exception as provided
aoqi@0 9 * by Oracle in the LICENSE file that accompanied this code.
aoqi@0 10 *
aoqi@0 11 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 14 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 15 * accompanied this code).
aoqi@0 16 *
aoqi@0 17 * You should have received a copy of the GNU General Public License version
aoqi@0 18 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 20 *
aoqi@0 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 22 * or visit www.oracle.com if you need additional information or have any
aoqi@0 23 * questions.
aoqi@0 24 */
aoqi@0 25
aoqi@0 26 package com.sun.xml.internal.ws.resources;
aoqi@0 27
aoqi@0 28 import com.sun.istack.internal.localization.Localizable;
aoqi@0 29 import com.sun.istack.internal.localization.LocalizableMessageFactory;
aoqi@0 30 import com.sun.istack.internal.localization.Localizer;
aoqi@0 31
aoqi@0 32
aoqi@0 33 /**
aoqi@0 34 * Defines string formatting method for each constant in the resource file
aoqi@0 35 *
aoqi@0 36 */
aoqi@0 37 public final class ModelerMessages {
aoqi@0 38
aoqi@0 39 private final static LocalizableMessageFactory messageFactory = new LocalizableMessageFactory("com.sun.xml.internal.ws.resources.modeler");
aoqi@0 40 private final static Localizer localizer = new Localizer();
aoqi@0 41
aoqi@0 42 public static Localizable localizableNESTED_MODELER_ERROR(Object arg0) {
aoqi@0 43 return messageFactory.getMessage("nestedModelerError", arg0);
aoqi@0 44 }
aoqi@0 45
aoqi@0 46 /**
aoqi@0 47 * runtime modeler error: {0}
aoqi@0 48 *
aoqi@0 49 */
aoqi@0 50 public static String NESTED_MODELER_ERROR(Object arg0) {
aoqi@0 51 return localizer.localize(localizableNESTED_MODELER_ERROR(arg0));
aoqi@0 52 }
aoqi@0 53
aoqi@0 54 public static Localizable localizableRUNTIME_MODELER_WSFEATURE_NO_FTRCONSTRUCTOR(Object arg0, Object arg1) {
aoqi@0 55 return messageFactory.getMessage("runtime.modeler.wsfeature.no.ftrconstructor", arg0, arg1);
aoqi@0 56 }
aoqi@0 57
aoqi@0 58 /**
aoqi@0 59 * Annotation {0} is not recognizable, at least one constructor of {1} should be marked with @FeatureConstructor
aoqi@0 60 *
aoqi@0 61 */
aoqi@0 62 public static String RUNTIME_MODELER_WSFEATURE_NO_FTRCONSTRUCTOR(Object arg0, Object arg1) {
aoqi@0 63 return localizer.localize(localizableRUNTIME_MODELER_WSFEATURE_NO_FTRCONSTRUCTOR(arg0, arg1));
aoqi@0 64 }
aoqi@0 65
aoqi@0 66 public static Localizable localizableRUNTIME_MODELER_EXTERNAL_METADATA_UNABLE_TO_READ(Object arg0) {
aoqi@0 67 return messageFactory.getMessage("runtime.modeler.external.metadata.unable.to.read", arg0);
aoqi@0 68 }
aoqi@0 69
aoqi@0 70 /**
aoqi@0 71 * Unable to read metadata file {0}. Check configuration/deployment.
aoqi@0 72 *
aoqi@0 73 */
aoqi@0 74 public static String RUNTIME_MODELER_EXTERNAL_METADATA_UNABLE_TO_READ(Object arg0) {
aoqi@0 75 return localizer.localize(localizableRUNTIME_MODELER_EXTERNAL_METADATA_UNABLE_TO_READ(arg0));
aoqi@0 76 }
aoqi@0 77
aoqi@0 78 public static Localizable localizableRUNTIME_MODELER_WEBMETHOD_MUST_BE_PUBLIC(Object arg0) {
aoqi@0 79 return messageFactory.getMessage("runtime.modeler.webmethod.must.be.public", arg0);
aoqi@0 80 }
aoqi@0 81
aoqi@0 82 /**
aoqi@0 83 * @WebMethod is not allowed on a non-public method {0}
aoqi@0 84 *
aoqi@0 85 */
aoqi@0 86 public static String RUNTIME_MODELER_WEBMETHOD_MUST_BE_PUBLIC(Object arg0) {
aoqi@0 87 return localizer.localize(localizableRUNTIME_MODELER_WEBMETHOD_MUST_BE_PUBLIC(arg0));
aoqi@0 88 }
aoqi@0 89
aoqi@0 90 public static Localizable localizableRUNTIME_MODELER_WRAPPER_NOT_FOUND(Object arg0) {
aoqi@0 91 return messageFactory.getMessage("runtime.modeler.wrapper.not.found", arg0);
aoqi@0 92 }
aoqi@0 93
aoqi@0 94 /**
aoqi@0 95 * Wrapper class {0} is not found. Have you run annotation processing to generate them?
aoqi@0 96 *
aoqi@0 97 */
aoqi@0 98 public static String RUNTIME_MODELER_WRAPPER_NOT_FOUND(Object arg0) {
aoqi@0 99 return localizer.localize(localizableRUNTIME_MODELER_WRAPPER_NOT_FOUND(arg0));
aoqi@0 100 }
aoqi@0 101
aoqi@0 102 public static Localizable localizableRUNTIME_MODELER_MTOM_CONFLICT(Object arg0, Object arg1) {
aoqi@0 103 return messageFactory.getMessage("runtime.modeler.mtom.conflict", arg0, arg1);
aoqi@0 104 }
aoqi@0 105
aoqi@0 106 /**
aoqi@0 107 * Error in @BindingType: MTOM Configuration in binding identifier {0} conflicts with feature @MTOM {1}
aoqi@0 108 *
aoqi@0 109 */
aoqi@0 110 public static String RUNTIME_MODELER_MTOM_CONFLICT(Object arg0, Object arg1) {
aoqi@0 111 return localizer.localize(localizableRUNTIME_MODELER_MTOM_CONFLICT(arg0, arg1));
aoqi@0 112 }
aoqi@0 113
aoqi@0 114 public static Localizable localizableRUNTIME_MODELER_EXTERNAL_METADATA_GENERIC(Object arg0) {
aoqi@0 115 return messageFactory.getMessage("runtime.modeler.external.metadata.generic", arg0);
aoqi@0 116 }
aoqi@0 117
aoqi@0 118 /**
aoqi@0 119 * An error occurred while processing external WS metadata; check configuration/deployment. Nested error: {0}.
aoqi@0 120 *
aoqi@0 121 */
aoqi@0 122 public static String RUNTIME_MODELER_EXTERNAL_METADATA_GENERIC(Object arg0) {
aoqi@0 123 return localizer.localize(localizableRUNTIME_MODELER_EXTERNAL_METADATA_GENERIC(arg0));
aoqi@0 124 }
aoqi@0 125
aoqi@0 126 public static Localizable localizableRUNTIME_MODELER_FEATURE_CONFLICT(Object arg0, Object arg1) {
aoqi@0 127 return messageFactory.getMessage("runtime.modeler.feature.conflict", arg0, arg1);
aoqi@0 128 }
aoqi@0 129
aoqi@0 130 /**
aoqi@0 131 * Feature {0} in implementation conflicts with {1} in WSDL configuration
aoqi@0 132 *
aoqi@0 133 */
aoqi@0 134 public static String RUNTIME_MODELER_FEATURE_CONFLICT(Object arg0, Object arg1) {
aoqi@0 135 return localizer.localize(localizableRUNTIME_MODELER_FEATURE_CONFLICT(arg0, arg1));
aoqi@0 136 }
aoqi@0 137
aoqi@0 138 public static Localizable localizableRUNTIME_MODELER_INVALID_SOAPBINDING_PARAMETERSTYLE(Object arg0, Object arg1) {
aoqi@0 139 return messageFactory.getMessage("runtime.modeler.invalid.soapbinding.parameterstyle", arg0, arg1);
aoqi@0 140 }
aoqi@0 141
aoqi@0 142 /**
aoqi@0 143 * Incorrect usage of Annotation {0} on {1}, ParameterStyle can only be WRAPPED with RPC Style Web service.
aoqi@0 144 *
aoqi@0 145 */
aoqi@0 146 public static String RUNTIME_MODELER_INVALID_SOAPBINDING_PARAMETERSTYLE(Object arg0, Object arg1) {
aoqi@0 147 return localizer.localize(localizableRUNTIME_MODELER_INVALID_SOAPBINDING_PARAMETERSTYLE(arg0, arg1));
aoqi@0 148 }
aoqi@0 149
aoqi@0 150 public static Localizable localizableRUNTIME_MODELER_WSFEATURE_MORETHANONE_FTRCONSTRUCTOR(Object arg0, Object arg1) {
aoqi@0 151 return messageFactory.getMessage("runtime.modeler.wsfeature.morethanone.ftrconstructor", arg0, arg1);
aoqi@0 152 }
aoqi@0 153
aoqi@0 154 /**
aoqi@0 155 * Annotation {0} is illegal, Only one constructor of {1} can be marked as @FeatureConstructor
aoqi@0 156 *
aoqi@0 157 */
aoqi@0 158 public static String RUNTIME_MODELER_WSFEATURE_MORETHANONE_FTRCONSTRUCTOR(Object arg0, Object arg1) {
aoqi@0 159 return localizer.localize(localizableRUNTIME_MODELER_WSFEATURE_MORETHANONE_FTRCONSTRUCTOR(arg0, arg1));
aoqi@0 160 }
aoqi@0 161
aoqi@0 162 public static Localizable localizableNOT_A_VALID_BARE_METHOD(Object arg0, Object arg1) {
aoqi@0 163 return messageFactory.getMessage("not.a.valid.bare.method", arg0, arg1);
aoqi@0 164 }
aoqi@0 165
aoqi@0 166 /**
aoqi@0 167 * SEI {0} has method {1} annotated as BARE but it has more than one parameter bound to body. This is invalid. Please annotate the method with annotation: @SOAPBinding(parameterStyle=SOAPBinding.ParameterStyle.WRAPPED)
aoqi@0 168 *
aoqi@0 169 */
aoqi@0 170 public static String NOT_A_VALID_BARE_METHOD(Object arg0, Object arg1) {
aoqi@0 171 return localizer.localize(localizableNOT_A_VALID_BARE_METHOD(arg0, arg1));
aoqi@0 172 }
aoqi@0 173
aoqi@0 174 public static Localizable localizableRUNTIME_MODELER_NO_PACKAGE(Object arg0) {
aoqi@0 175 return messageFactory.getMessage("runtime.modeler.no.package", arg0);
aoqi@0 176 }
aoqi@0 177
aoqi@0 178 /**
aoqi@0 179 * A @WebService.targetNamespace must be specified on classes with no package. Class: {0}
aoqi@0 180 *
aoqi@0 181 */
aoqi@0 182 public static String RUNTIME_MODELER_NO_PACKAGE(Object arg0) {
aoqi@0 183 return localizer.localize(localizableRUNTIME_MODELER_NO_PACKAGE(arg0));
aoqi@0 184 }
aoqi@0 185
aoqi@0 186 public static Localizable localizableRUNTIME_MODELER_NO_WEBSERVICE_ANNOTATION(Object arg0) {
aoqi@0 187 return messageFactory.getMessage("runtime.modeler.no.webservice.annotation", arg0);
aoqi@0 188 }
aoqi@0 189
aoqi@0 190 /**
aoqi@0 191 * A WebService annotation is not present on class: {0}
aoqi@0 192 *
aoqi@0 193 */
aoqi@0 194 public static String RUNTIME_MODELER_NO_WEBSERVICE_ANNOTATION(Object arg0) {
aoqi@0 195 return localizer.localize(localizableRUNTIME_MODELER_NO_WEBSERVICE_ANNOTATION(arg0));
aoqi@0 196 }
aoqi@0 197
aoqi@0 198 public static Localizable localizableRUNTIME_MODELER_ADDRESSING_RESPONSES_NOSUCHMETHOD(Object arg0) {
aoqi@0 199 return messageFactory.getMessage("runtime.modeler.addressing.responses.nosuchmethod", arg0);
aoqi@0 200 }
aoqi@0 201
aoqi@0 202 /**
aoqi@0 203 * JAX-WS 2.1 API is loaded from {0}, But JAX-WS runtime requires JAX-WS 2.2 API. Use the endorsed standards override mechanism to load JAX-WS 2.2 API
aoqi@0 204 *
aoqi@0 205 */
aoqi@0 206 public static String RUNTIME_MODELER_ADDRESSING_RESPONSES_NOSUCHMETHOD(Object arg0) {
aoqi@0 207 return localizer.localize(localizableRUNTIME_MODELER_ADDRESSING_RESPONSES_NOSUCHMETHOD(arg0));
aoqi@0 208 }
aoqi@0 209
aoqi@0 210 public static Localizable localizableRUNTIME_MODELER_EXTERNAL_METADATA_WRONG_FORMAT(Object arg0) {
aoqi@0 211 return messageFactory.getMessage("runtime.modeler.external.metadata.wrong.format", arg0);
aoqi@0 212 }
aoqi@0 213
aoqi@0 214 /**
aoqi@0 215 * Unable to read metadata from {0}. Is the format correct?
aoqi@0 216 *
aoqi@0 217 */
aoqi@0 218 public static String RUNTIME_MODELER_EXTERNAL_METADATA_WRONG_FORMAT(Object arg0) {
aoqi@0 219 return localizer.localize(localizableRUNTIME_MODELER_EXTERNAL_METADATA_WRONG_FORMAT(arg0));
aoqi@0 220 }
aoqi@0 221
aoqi@0 222 public static Localizable localizableRUNTIME_MODELER_ONEWAY_OPERATION_NO_OUT_PARAMETERS(Object arg0, Object arg1) {
aoqi@0 223 return messageFactory.getMessage("runtime.modeler.oneway.operation.no.out.parameters", arg0, arg1);
aoqi@0 224 }
aoqi@0 225
aoqi@0 226 /**
aoqi@0 227 * oneway operation should not have OUT parameters class: {0} method: {1}
aoqi@0 228 *
aoqi@0 229 */
aoqi@0 230 public static String RUNTIME_MODELER_ONEWAY_OPERATION_NO_OUT_PARAMETERS(Object arg0, Object arg1) {
aoqi@0 231 return localizer.localize(localizableRUNTIME_MODELER_ONEWAY_OPERATION_NO_OUT_PARAMETERS(arg0, arg1));
aoqi@0 232 }
aoqi@0 233
aoqi@0 234 public static Localizable localizableUNABLE_TO_CREATE_JAXB_CONTEXT() {
aoqi@0 235 return messageFactory.getMessage("unable.to.create.JAXBContext");
aoqi@0 236 }
aoqi@0 237
aoqi@0 238 /**
aoqi@0 239 * Unable to create JAXBContext
aoqi@0 240 *
aoqi@0 241 */
aoqi@0 242 public static String UNABLE_TO_CREATE_JAXB_CONTEXT() {
aoqi@0 243 return localizer.localize(localizableUNABLE_TO_CREATE_JAXB_CONTEXT());
aoqi@0 244 }
aoqi@0 245
aoqi@0 246 public static Localizable localizableRUNTIME_MODELER_NO_OPERATIONS(Object arg0) {
aoqi@0 247 return messageFactory.getMessage("runtime.modeler.no.operations", arg0);
aoqi@0 248 }
aoqi@0 249
aoqi@0 250 /**
aoqi@0 251 * The web service defined by the class {0} does not contain any valid WebMethods.
aoqi@0 252 *
aoqi@0 253 */
aoqi@0 254 public static String RUNTIME_MODELER_NO_OPERATIONS(Object arg0) {
aoqi@0 255 return localizer.localize(localizableRUNTIME_MODELER_NO_OPERATIONS(arg0));
aoqi@0 256 }
aoqi@0 257
aoqi@0 258 public static Localizable localizableRUNTIME_MODELER_ONEWAY_OPERATION_NO_CHECKED_EXCEPTIONS(Object arg0, Object arg1, Object arg2) {
aoqi@0 259 return messageFactory.getMessage("runtime.modeler.oneway.operation.no.checked.exceptions", arg0, arg1, arg2);
aoqi@0 260 }
aoqi@0 261
aoqi@0 262 /**
aoqi@0 263 * Oneway operation should not throw any checked exceptions class: {0} method: {1} throws: {2}
aoqi@0 264 *
aoqi@0 265 */
aoqi@0 266 public static String RUNTIME_MODELER_ONEWAY_OPERATION_NO_CHECKED_EXCEPTIONS(Object arg0, Object arg1, Object arg2) {
aoqi@0 267 return localizer.localize(localizableRUNTIME_MODELER_ONEWAY_OPERATION_NO_CHECKED_EXCEPTIONS(arg0, arg1, arg2));
aoqi@0 268 }
aoqi@0 269
aoqi@0 270 public static Localizable localizableRUNTIME_MODELER_WEBMETHOD_MUST_BE_NONSTATIC(Object arg0) {
aoqi@0 271 return messageFactory.getMessage("runtime.modeler.webmethod.must.be.nonstatic", arg0);
aoqi@0 272 }
aoqi@0 273
aoqi@0 274 /**
aoqi@0 275 * @WebMethod is not allowed on a static method {0}
aoqi@0 276 *
aoqi@0 277 */
aoqi@0 278 public static String RUNTIME_MODELER_WEBMETHOD_MUST_BE_NONSTATIC(Object arg0) {
aoqi@0 279 return localizer.localize(localizableRUNTIME_MODELER_WEBMETHOD_MUST_BE_NONSTATIC(arg0));
aoqi@0 280 }
aoqi@0 281
aoqi@0 282 public static Localizable localizableRUNTIME_MODELER_METHOD_NOT_FOUND(Object arg0, Object arg1) {
aoqi@0 283 return messageFactory.getMessage("runtime.modeler.method.not.found", arg0, arg1);
aoqi@0 284 }
aoqi@0 285
aoqi@0 286 /**
aoqi@0 287 * method: {0} could not be found on class: {1}
aoqi@0 288 *
aoqi@0 289 */
aoqi@0 290 public static String RUNTIME_MODELER_METHOD_NOT_FOUND(Object arg0, Object arg1) {
aoqi@0 291 return localizer.localize(localizableRUNTIME_MODELER_METHOD_NOT_FOUND(arg0, arg1));
aoqi@0 292 }
aoqi@0 293
aoqi@0 294 public static Localizable localizableRUNTIME_MODELER_CLASS_NOT_FOUND(Object arg0) {
aoqi@0 295 return messageFactory.getMessage("runtime.modeler.class.not.found", arg0);
aoqi@0 296 }
aoqi@0 297
aoqi@0 298 /**
aoqi@0 299 * class: {0} could not be found
aoqi@0 300 *
aoqi@0 301 */
aoqi@0 302 public static String RUNTIME_MODELER_CLASS_NOT_FOUND(Object arg0) {
aoqi@0 303 return localizer.localize(localizableRUNTIME_MODELER_CLASS_NOT_FOUND(arg0));
aoqi@0 304 }
aoqi@0 305
aoqi@0 306 public static Localizable localizableRUNTIME_MODELER_SOAPBINDING_CONFLICT(Object arg0, Object arg1, Object arg2) {
aoqi@0 307 return messageFactory.getMessage("runtime.modeler.soapbinding.conflict", arg0, arg1, arg2);
aoqi@0 308 }
aoqi@0 309
aoqi@0 310 /**
aoqi@0 311 * SOAPBinding Style {0} for method {1} conflicts with global SOAPBinding Style {2}
aoqi@0 312 *
aoqi@0 313 */
aoqi@0 314 public static String RUNTIME_MODELER_SOAPBINDING_CONFLICT(Object arg0, Object arg1, Object arg2) {
aoqi@0 315 return localizer.localize(localizableRUNTIME_MODELER_SOAPBINDING_CONFLICT(arg0, arg1, arg2));
aoqi@0 316 }
aoqi@0 317
aoqi@0 318 public static Localizable localizableRUNTIME_MODELER_CANNOT_GET_SERVICE_NAME_FROM_INTERFACE(Object arg0) {
aoqi@0 319 return messageFactory.getMessage("runtime.modeler.cannot.get.serviceName.from.interface", arg0);
aoqi@0 320 }
aoqi@0 321
aoqi@0 322 /**
aoqi@0 323 * The serviceName cannot be retrieved from an interface. class {0}
aoqi@0 324 *
aoqi@0 325 */
aoqi@0 326 public static String RUNTIME_MODELER_CANNOT_GET_SERVICE_NAME_FROM_INTERFACE(Object arg0) {
aoqi@0 327 return localizer.localize(localizableRUNTIME_MODELER_CANNOT_GET_SERVICE_NAME_FROM_INTERFACE(arg0));
aoqi@0 328 }
aoqi@0 329
aoqi@0 330 public static Localizable localizableRUNTIME_MODELER_ENDPOINT_INTERFACE_NO_WEBSERVICE(Object arg0) {
aoqi@0 331 return messageFactory.getMessage("runtime.modeler.endpoint.interface.no.webservice", arg0);
aoqi@0 332 }
aoqi@0 333
aoqi@0 334 /**
aoqi@0 335 * The Endpoint Interface: {0} does not have WebService Annotation
aoqi@0 336 *
aoqi@0 337 */
aoqi@0 338 public static String RUNTIME_MODELER_ENDPOINT_INTERFACE_NO_WEBSERVICE(Object arg0) {
aoqi@0 339 return localizer.localize(localizableRUNTIME_MODELER_ENDPOINT_INTERFACE_NO_WEBSERVICE(arg0));
aoqi@0 340 }
aoqi@0 341
aoqi@0 342 public static Localizable localizableRUNTIME_MODELER_EXTERNAL_METADATA_UNSUPPORTED_SCHEMA(Object arg0, Object arg1) {
aoqi@0 343 return messageFactory.getMessage("runtime.modeler.external.metadata.unsupported.schema", arg0, arg1);
aoqi@0 344 }
aoqi@0 345
aoqi@0 346 /**
aoqi@0 347 * Unsupported metadata file schema {0}. Supported schemes are {1}.
aoqi@0 348 *
aoqi@0 349 */
aoqi@0 350 public static String RUNTIME_MODELER_EXTERNAL_METADATA_UNSUPPORTED_SCHEMA(Object arg0, Object arg1) {
aoqi@0 351 return localizer.localize(localizableRUNTIME_MODELER_EXTERNAL_METADATA_UNSUPPORTED_SCHEMA(arg0, arg1));
aoqi@0 352 }
aoqi@0 353
aoqi@0 354 public static Localizable localizableRUNTIMEMODELER_INVALID_SOAPBINDING_ON_METHOD(Object arg0, Object arg1, Object arg2) {
aoqi@0 355 return messageFactory.getMessage("runtimemodeler.invalid.soapbindingOnMethod", arg0, arg1, arg2);
aoqi@0 356 }
aoqi@0 357
aoqi@0 358 /**
aoqi@0 359 * Invalid annotation: {0} on Method {1} in Class {2}, A method cannot be annotated with @SOAPBinding with Style "RPC"
aoqi@0 360 *
aoqi@0 361 */
aoqi@0 362 public static String RUNTIMEMODELER_INVALID_SOAPBINDING_ON_METHOD(Object arg0, Object arg1, Object arg2) {
aoqi@0 363 return localizer.localize(localizableRUNTIMEMODELER_INVALID_SOAPBINDING_ON_METHOD(arg0, arg1, arg2));
aoqi@0 364 }
aoqi@0 365
aoqi@0 366 public static Localizable localizableRUNTIME_MODELER_PORTNAME_SERVICENAME_NAMESPACE_MISMATCH(Object arg0, Object arg1) {
aoqi@0 367 return messageFactory.getMessage("runtime.modeler.portname.servicename.namespace.mismatch", arg0, arg1);
aoqi@0 368 }
aoqi@0 369
aoqi@0 370 /**
aoqi@0 371 * The namespace of the serviceName "{0}" and the namespace of the portName "{1}" must match
aoqi@0 372 *
aoqi@0 373 */
aoqi@0 374 public static String RUNTIME_MODELER_PORTNAME_SERVICENAME_NAMESPACE_MISMATCH(Object arg0, Object arg1) {
aoqi@0 375 return localizer.localize(localizableRUNTIME_MODELER_PORTNAME_SERVICENAME_NAMESPACE_MISMATCH(arg0, arg1));
aoqi@0 376 }
aoqi@0 377
aoqi@0 378 public static Localizable localizableRUNTIME_MODELER_WSFEATURE_ILLEGAL_FTRCONSTRUCTOR(Object arg0, Object arg1) {
aoqi@0 379 return messageFactory.getMessage("runtime.modeler.wsfeature.illegal.ftrconstructor", arg0, arg1);
aoqi@0 380 }
aoqi@0 381
aoqi@0 382 /**
aoqi@0 383 * Annotation {0} is illegal, In {1} @FeatureConstructor value doesn't match the constructor parameters
aoqi@0 384 *
aoqi@0 385 */
aoqi@0 386 public static String RUNTIME_MODELER_WSFEATURE_ILLEGAL_FTRCONSTRUCTOR(Object arg0, Object arg1) {
aoqi@0 387 return localizer.localize(localizableRUNTIME_MODELER_WSFEATURE_ILLEGAL_FTRCONSTRUCTOR(arg0, arg1));
aoqi@0 388 }
aoqi@0 389
aoqi@0 390 public static Localizable localizableRUNTIME_MODELER_WEBMETHOD_MUST_BE_NONSTATICFINAL(Object arg0) {
aoqi@0 391 return messageFactory.getMessage("runtime.modeler.webmethod.must.be.nonstaticfinal", arg0);
aoqi@0 392 }
aoqi@0 393
aoqi@0 394 /**
aoqi@0 395 * @WebMethod is not allowed on a static or final method {0}
aoqi@0 396 *
aoqi@0 397 */
aoqi@0 398 public static String RUNTIME_MODELER_WEBMETHOD_MUST_BE_NONSTATICFINAL(Object arg0) {
aoqi@0 399 return localizer.localize(localizableRUNTIME_MODELER_WEBMETHOD_MUST_BE_NONSTATICFINAL(arg0));
aoqi@0 400 }
aoqi@0 401
aoqi@0 402 }

mercurial