src/share/jaxws_classes/com/sun/tools/internal/ws/resources/WscompileMessages.java

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

author
aoqi
date
Thu, 31 Aug 2017 15:18:52 +0800
changeset 637
9c07ef4934dd
parent 408
b0610cd08440
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.tools.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 WscompileMessages {
aoqi@0 38
aoqi@0 39 private final static LocalizableMessageFactory messageFactory = new LocalizableMessageFactory("com.sun.tools.internal.ws.resources.wscompile");
aoqi@0 40 private final static Localizer localizer = new Localizer();
aoqi@0 41
aoqi@0 42 public static Localizable localizableWSIMPORT_ARCHIVING_ARTIFACTS(Object arg0) {
aoqi@0 43 return messageFactory.getMessage("wsimport.archivingArtifacts", arg0);
aoqi@0 44 }
aoqi@0 45
aoqi@0 46 /**
aoqi@0 47 *
aoqi@0 48 * Archiving the generated artifacts into {0}.
aoqi@0 49 *
aoqi@0 50 *
aoqi@0 51 */
aoqi@0 52 public static String WSIMPORT_ARCHIVING_ARTIFACTS(Object arg0) {
aoqi@0 53 return localizer.localize(localizableWSIMPORT_ARCHIVING_ARTIFACTS(arg0));
aoqi@0 54 }
aoqi@0 55
aoqi@0 56 public static Localizable localizableWSGEN_CLASS_MUST_BE_IMPLEMENTATION_CLASS(Object arg0) {
aoqi@0 57 return messageFactory.getMessage("wsgen.class.must.be.implementation.class", arg0);
aoqi@0 58 }
aoqi@0 59
aoqi@0 60 /**
aoqi@0 61 * The class "{0}" is not an endpoint implementation class.
aoqi@0 62 *
aoqi@0 63 */
aoqi@0 64 public static String WSGEN_CLASS_MUST_BE_IMPLEMENTATION_CLASS(Object arg0) {
aoqi@0 65 return localizer.localize(localizableWSGEN_CLASS_MUST_BE_IMPLEMENTATION_CLASS(arg0));
aoqi@0 66 }
aoqi@0 67
aoqi@0 68 public static Localizable localizableWSGEN_FULLVERSION(Object arg0) {
aoqi@0 69 return messageFactory.getMessage("wsgen.fullversion", arg0);
aoqi@0 70 }
aoqi@0 71
aoqi@0 72 /**
aoqi@0 73 * wsgen full version "{0}"
aoqi@0 74 *
aoqi@0 75 */
aoqi@0 76 public static String WSGEN_FULLVERSION(Object arg0) {
aoqi@0 77 return localizer.localize(localizableWSGEN_FULLVERSION(arg0));
aoqi@0 78 }
aoqi@0 79
aoqi@0 80 public static Localizable localizableWRAPPER_TASK_LOADING_INCORRECT_API(Object arg0, Object arg1, Object arg2) {
aoqi@0 81 return messageFactory.getMessage("wrapperTask.loadingIncorrectApi", arg0, arg1, arg2);
aoqi@0 82 }
aoqi@0 83
aoqi@0 84 /**
aoqi@0 85 * You are loading JAX-WS {0} API from {1} but this tool requires JAX-WS {2} API.
aoqi@0 86 *
aoqi@0 87 */
aoqi@0 88 public static String WRAPPER_TASK_LOADING_INCORRECT_API(Object arg0, Object arg1, Object arg2) {
aoqi@0 89 return localizer.localize(localizableWRAPPER_TASK_LOADING_INCORRECT_API(arg0, arg1, arg2));
aoqi@0 90 }
aoqi@0 91
aoqi@0 92 public static Localizable localizableWSIMPORT_WSDLLOCATION_CLIENTJAR() {
aoqi@0 93 return messageFactory.getMessage("wsimport.wsdllocation.clientjar");
aoqi@0 94 }
aoqi@0 95
aoqi@0 96 /**
aoqi@0 97 * wsdlLocation cannot be specified when using clientJar option
aoqi@0 98 *
aoqi@0 99 */
aoqi@0 100 public static String WSIMPORT_WSDLLOCATION_CLIENTJAR() {
aoqi@0 101 return localizer.localize(localizableWSIMPORT_WSDLLOCATION_CLIENTJAR());
aoqi@0 102 }
aoqi@0 103
aoqi@0 104 public static Localizable localizableWSIMPORT_VERSION(Object arg0) {
aoqi@0 105 return messageFactory.getMessage("wsimport.version", arg0);
aoqi@0 106 }
aoqi@0 107
aoqi@0 108 /**
aoqi@0 109 * wsimport version "{0}"
aoqi@0 110 *
aoqi@0 111 */
aoqi@0 112 public static String WSIMPORT_VERSION(Object arg0) {
aoqi@0 113 return localizer.localize(localizableWSIMPORT_VERSION(arg0));
aoqi@0 114 }
aoqi@0 115
aoqi@0 116 public static Localizable localizableWSGEN_CLASS_NOT_FOUND(Object arg0) {
aoqi@0 117 return messageFactory.getMessage("wsgen.class.not.found", arg0);
aoqi@0 118 }
aoqi@0 119
aoqi@0 120 /**
aoqi@0 121 * Class not found: "{0}"
aoqi@0 122 *
aoqi@0 123 */
aoqi@0 124 public static String WSGEN_CLASS_NOT_FOUND(Object arg0) {
aoqi@0 125 return localizer.localize(localizableWSGEN_CLASS_NOT_FOUND(arg0));
aoqi@0 126 }
aoqi@0 127
aoqi@0 128 public static Localizable localizableWSIMPORT_HTTP_REDIRECT(Object arg0, Object arg1) {
aoqi@0 129 return messageFactory.getMessage("wsimport.httpRedirect", arg0, arg1);
aoqi@0 130 }
aoqi@0 131
aoqi@0 132 /**
aoqi@0 133 * Server returned HTTP Status code: "{0}", retrying with "{1}"
aoqi@0 134 *
aoqi@0 135 */
aoqi@0 136 public static String WSIMPORT_HTTP_REDIRECT(Object arg0, Object arg1) {
aoqi@0 137 return localizer.localize(localizableWSIMPORT_HTTP_REDIRECT(arg0, arg1));
aoqi@0 138 }
aoqi@0 139
aoqi@0 140 public static Localizable localizableWSIMPORT_AUTH_INFO_NEEDED(Object arg0, Object arg1, Object arg2) {
aoqi@0 141 return messageFactory.getMessage("wsimport.authInfoNeeded", arg0, arg1, arg2);
aoqi@0 142 }
aoqi@0 143
aoqi@0 144 /**
aoqi@0 145 * {0}, "{1}" needs authorization, please provide authorization file with read access at {2} or use -Xauthfile to give the authorization file and on each line provide authorization information using this format : http[s]://user:password@host:port//<url-path>
aoqi@0 146 *
aoqi@0 147 */
aoqi@0 148 public static String WSIMPORT_AUTH_INFO_NEEDED(Object arg0, Object arg1, Object arg2) {
aoqi@0 149 return localizer.localize(localizableWSIMPORT_AUTH_INFO_NEEDED(arg0, arg1, arg2));
aoqi@0 150 }
aoqi@0 151
aoqi@0 152 public static Localizable localizableWSGEN_USAGE_EXAMPLES() {
aoqi@0 153 return messageFactory.getMessage("wsgen.usage.examples");
aoqi@0 154 }
aoqi@0 155
aoqi@0 156 /**
aoqi@0 157 *
aoqi@0 158 * Examples:
aoqi@0 159 * wsgen -cp . example.Stock
aoqi@0 160 * wsgen -cp . example.Stock -wsdl -servicename '{http://mynamespace}MyService'
aoqi@0 161 *
aoqi@0 162 *
aoqi@0 163 */
aoqi@0 164 public static String WSGEN_USAGE_EXAMPLES() {
aoqi@0 165 return localizer.localize(localizableWSGEN_USAGE_EXAMPLES());
aoqi@0 166 }
aoqi@0 167
aoqi@0 168 public static Localizable localizableWSIMPORT_FETCHING_METADATA() {
aoqi@0 169 return messageFactory.getMessage("wsimport.fetchingMetadata");
aoqi@0 170 }
aoqi@0 171
aoqi@0 172 /**
aoqi@0 173 *
aoqi@0 174 * Downloading the WSDL and associated metadata
aoqi@0 175 *
aoqi@0 176 *
aoqi@0 177 */
aoqi@0 178 public static String WSIMPORT_FETCHING_METADATA() {
aoqi@0 179 return localizer.localize(localizableWSIMPORT_FETCHING_METADATA());
aoqi@0 180 }
aoqi@0 181
aoqi@0 182 public static Localizable localizableWSGEN_INVALID_PROTOCOL(Object arg0, Object arg1) {
aoqi@0 183 return messageFactory.getMessage("wsgen.invalid.protocol", arg0, arg1);
aoqi@0 184 }
aoqi@0 185
aoqi@0 186 /**
aoqi@0 187 * "{0}" is not a supported protocol. Supported protocols include: {1}.
aoqi@0 188 *
aoqi@0 189 */
aoqi@0 190 public static String WSGEN_INVALID_PROTOCOL(Object arg0, Object arg1) {
aoqi@0 191 return localizer.localize(localizableWSGEN_INVALID_PROTOCOL(arg0, arg1));
aoqi@0 192 }
aoqi@0 193
aoqi@0 194 public static Localizable localizableWSIMPORT_USAGE_EXAMPLES() {
aoqi@0 195 return messageFactory.getMessage("wsimport.usage.examples");
aoqi@0 196 }
aoqi@0 197
aoqi@0 198 /**
aoqi@0 199 *
aoqi@0 200 * Examples:
aoqi@0 201 * wsimport stock.wsdl -b stock.xml -b stock.xjb
aoqi@0 202 * wsimport -d generated http://example.org/stock?wsdl
aoqi@0 203 *
aoqi@0 204 *
aoqi@0 205 */
aoqi@0 206 public static String WSIMPORT_USAGE_EXAMPLES() {
aoqi@0 207 return localizer.localize(localizableWSIMPORT_USAGE_EXAMPLES());
aoqi@0 208 }
aoqi@0 209
aoqi@0 210 public static Localizable localizableINVOKER_NEED_ENDORSED(Object arg0, Object arg1) {
aoqi@0 211 return messageFactory.getMessage("invoker.needEndorsed", arg0, arg1);
aoqi@0 212 }
aoqi@0 213
aoqi@0 214 /**
aoqi@0 215 * You are running on JDK6 which comes with JAX-WS {0} API, but this tool requires JAX-WS {1} API. Use the endorsed standards override mechanism (http://docs.oracle.com/javase/6/docs/technotes/guides/standards/), or use -Xendorsed option.
aoqi@0 216 *
aoqi@0 217 */
aoqi@0 218 public static String INVOKER_NEED_ENDORSED(Object arg0, Object arg1) {
aoqi@0 219 return localizer.localize(localizableINVOKER_NEED_ENDORSED(arg0, arg1));
aoqi@0 220 }
aoqi@0 221
aoqi@0 222 public static Localizable localizableWSIMPORT_MISSING_FILE() {
aoqi@0 223 return messageFactory.getMessage("wsimport.missingFile");
aoqi@0 224 }
aoqi@0 225
aoqi@0 226 /**
aoqi@0 227 * Missing WSDL_URI
aoqi@0 228 *
aoqi@0 229 */
aoqi@0 230 public static String WSIMPORT_MISSING_FILE() {
aoqi@0 231 return localizer.localize(localizableWSIMPORT_MISSING_FILE());
aoqi@0 232 }
aoqi@0 233
aoqi@0 234 public static Localizable localizableWSIMPORT_USAGE_EXTENSIONS() {
aoqi@0 235 return messageFactory.getMessage("wsimport.usage.extensions");
aoqi@0 236 }
aoqi@0 237
aoqi@0 238 /**
aoqi@0 239 *
aoqi@0 240 * Extensions:
aoqi@0 241 * -XadditionalHeaders map headers not bound to request or response message to
aoqi@0 242 * Java method parameters
aoqi@0 243 * -Xauthfile file to carry authorization information in the format
aoqi@0 244 * http://username:password@example.org/stock?wsdl
aoqi@0 245 * -Xdebug print debug information
aoqi@0 246 * -Xno-addressing-databinding enable binding of W3C EndpointReferenceType to Java
aoqi@0 247 * -Xnocompile do not compile generated Java files
aoqi@0 248 * -XdisableAuthenticator disable Authenticator used by JAX-WS RI,
aoqi@0 249 * -Xauthfile option will be ignored if set
aoqi@0 250 * -XdisableSSLHostnameVerification disable the SSL Hostname verification while fetching
aoqi@0 251 * wsdls
aoqi@0 252 *
aoqi@0 253 */
aoqi@0 254 public static String WSIMPORT_USAGE_EXTENSIONS() {
aoqi@0 255 return localizer.localize(localizableWSIMPORT_USAGE_EXTENSIONS());
aoqi@0 256 }
aoqi@0 257
aoqi@0 258 public static Localizable localizableWSIMPORT_USAGE(Object arg0) {
aoqi@0 259 return messageFactory.getMessage("wsimport.usage", arg0);
aoqi@0 260 }
aoqi@0 261
aoqi@0 262 /**
aoqi@0 263 * Usage: {0} [options] <WSDL_URI>
aoqi@0 264 *
aoqi@0 265 * Use "wsimport -help" for a detailed description of options.
aoqi@0 266 *
aoqi@0 267 */
aoqi@0 268 public static String WSIMPORT_USAGE(Object arg0) {
aoqi@0 269 return localizer.localize(localizableWSIMPORT_USAGE(arg0));
aoqi@0 270 }
aoqi@0 271
aoqi@0 272 public static Localizable localizableWSGEN_USAGE_EXTENSIONS() {
aoqi@0 273 return messageFactory.getMessage("wsgen.usage.extensions");
aoqi@0 274 }
aoqi@0 275
aoqi@0 276 /**
aoqi@0 277 *
aoqi@0 278 * Extensions:
aoqi@0 279 * -Xnocompile do not compile generated Java files
aoqi@0 280 *
aoqi@0 281 */
aoqi@0 282 public static String WSGEN_USAGE_EXTENSIONS() {
aoqi@0 283 return localizer.localize(localizableWSGEN_USAGE_EXTENSIONS());
aoqi@0 284 }
aoqi@0 285
aoqi@0 286 public static Localizable localizablePLEASE() {
aoqi@0 287 return messageFactory.getMessage("Please");
aoqi@0 288 }
aoqi@0 289
aoqi@0 290 /**
aoqi@0 291 * specify "-extension" and "-wsdl:protocol XSoap1.2" switches. For example:
aoqi@0 292 *
aoqi@0 293 *
aoqi@0 294 *
aoqi@0 295 */
aoqi@0 296 public static String PLEASE() {
aoqi@0 297 return localizer.localize(localizablePLEASE());
aoqi@0 298 }
aoqi@0 299
aoqi@0 300 public static Localizable localizableWSCOMPILE_EXISTING_OPTION(Object arg0) {
aoqi@0 301 return messageFactory.getMessage("wscompile.existingOption", arg0);
aoqi@0 302 }
aoqi@0 303
aoqi@0 304 /**
aoqi@0 305 * Ignoring already defined option {0}
aoqi@0 306 *
aoqi@0 307 *
aoqi@0 308 */
aoqi@0 309 public static String WSCOMPILE_EXISTING_OPTION(Object arg0) {
aoqi@0 310 return localizer.localize(localizableWSCOMPILE_EXISTING_OPTION(arg0));
aoqi@0 311 }
aoqi@0 312
aoqi@0 313 public static Localizable localizableWSIMPORT_PARSING_WSDL() {
aoqi@0 314 return messageFactory.getMessage("wsimport.ParsingWSDL");
aoqi@0 315 }
aoqi@0 316
aoqi@0 317 /**
aoqi@0 318 * parsing WSDL...
aoqi@0 319 *
aoqi@0 320 *
aoqi@0 321 *
aoqi@0 322 */
aoqi@0 323 public static String WSIMPORT_PARSING_WSDL() {
aoqi@0 324 return localizer.localize(localizableWSIMPORT_PARSING_WSDL());
aoqi@0 325 }
aoqi@0 326
aoqi@0 327 public static Localizable localizableWSGEN_MISSING_FILE() {
aoqi@0 328 return messageFactory.getMessage("wsgen.missingFile");
aoqi@0 329 }
aoqi@0 330
aoqi@0 331 /**
aoqi@0 332 * Missing SEI
aoqi@0 333 *
aoqi@0 334 */
aoqi@0 335 public static String WSGEN_MISSING_FILE() {
aoqi@0 336 return localizer.localize(localizableWSGEN_MISSING_FILE());
aoqi@0 337 }
aoqi@0 338
aoqi@0 339 public static Localizable localizableWSIMPORT_HELP(Object arg0) {
aoqi@0 340 return messageFactory.getMessage("wsimport.help", arg0);
aoqi@0 341 }
aoqi@0 342
aoqi@0 343 /**
aoqi@0 344 *
aoqi@0 345 * Usage: {0} [options] <WSDL_URI>
aoqi@0 346 *
aoqi@0 347 * where [options] include:
aoqi@0 348 * -b <path> specify jaxws/jaxb binding files or additional schemas
aoqi@0 349 * (Each <path> must have its own -b)
aoqi@0 350 * -B<jaxbOption> Pass this option to JAXB schema compiler
aoqi@0 351 * -catalog <file> specify catalog file to resolve external entity references
aoqi@0 352 * supports TR9401, XCatalog, and OASIS XML Catalog format.
aoqi@0 353 * -classpath <path> specify where to find user class files and wsimport extensions
aoqi@0 354 * -cp <path> specify where to find user class files and wsimport extensions
aoqi@0 355 * -d <directory> specify where to place generated output files
aoqi@0 356 * -encoding <encoding> specify character encoding used by source files
aoqi@0 357 * -extension allow vendor extensions - functionality not specified
aoqi@0 358 * by the specification. Use of extensions may
aoqi@0 359 * result in applications that are not portable or
aoqi@0 360 * may not interoperate with other implementations
aoqi@0 361 * -help display help
aoqi@0 362 * -httpproxy:<proxy> set a HTTP proxy. Format is [user[:password]@]proxyHost:proxyPort
aoqi@0 363 * (port defaults to 8080)
aoqi@0 364 * -J<javacOption> pass this option to javac
aoqi@0 365 * -keep keep generated files
aoqi@0 366 * -p <pkg> specifies the target package
aoqi@0 367 * -quiet suppress wsimport output
aoqi@0 368 * -s <directory> specify where to place generated source files
aoqi@0 369 * -target <version> generate code as per the given JAXWS spec version
aoqi@0 370 * Defaults to 2.2, Accepted values are 2.0, 2.1 and 2.2
aoqi@0 371 * e.g. 2.0 will generate compliant code for JAXWS 2.0 spec
aoqi@0 372 * -verbose output messages about what the compiler is doing
aoqi@0 373 * -version print version information
aoqi@0 374 * -fullversion print full version information
aoqi@0 375 * -wsdllocation <location> @WebServiceClient.wsdlLocation value
aoqi@0 376 * -clientjar <jarfile> creates the jar file of the generated artifacts along with the
aoqi@0 377 * WSDL metadata required for invoking the web service.
aoqi@0 378 * -generateJWS generate stubbed JWS implementation file
aoqi@0 379 * -implDestDir <directory> specify where to generate JWS implementation file
aoqi@0 380 * -implServiceName <name> local portion of service name for generated JWS implementation
aoqi@0 381 * -implPortName <name> local portion of port name for generated JWS implementation
aoqi@0 382 *
aoqi@0 383 */
aoqi@0 384 public static String WSIMPORT_HELP(Object arg0) {
aoqi@0 385 return localizer.localize(localizableWSIMPORT_HELP(arg0));
aoqi@0 386 }
aoqi@0 387
aoqi@0 388 public static Localizable localizableWSCOMPILE_ERROR(Object arg0) {
aoqi@0 389 return messageFactory.getMessage("wscompile.error", arg0);
aoqi@0 390 }
aoqi@0 391
aoqi@0 392 /**
aoqi@0 393 * error: {0}
aoqi@0 394 *
aoqi@0 395 */
aoqi@0 396 public static String WSCOMPILE_ERROR(Object arg0) {
aoqi@0 397 return localizer.localize(localizableWSCOMPILE_ERROR(arg0));
aoqi@0 398 }
aoqi@0 399
aoqi@0 400 public static Localizable localizableWSGEN_PROTOCOL_WITHOUT_EXTENSION(Object arg0) {
aoqi@0 401 return messageFactory.getMessage("wsgen.protocol.without.extension", arg0);
aoqi@0 402 }
aoqi@0 403
aoqi@0 404 /**
aoqi@0 405 * The optional protocol "{0}" must be used in conjunction with the "-extension" option.
aoqi@0 406 *
aoqi@0 407 */
aoqi@0 408 public static String WSGEN_PROTOCOL_WITHOUT_EXTENSION(Object arg0) {
aoqi@0 409 return localizer.localize(localizableWSGEN_PROTOCOL_WITHOUT_EXTENSION(arg0));
aoqi@0 410 }
aoqi@0 411
aoqi@0 412 public static Localizable localizableWSIMPORT_COMPILING_CODE() {
aoqi@0 413 return messageFactory.getMessage("wsimport.CompilingCode");
aoqi@0 414 }
aoqi@0 415
aoqi@0 416 /**
aoqi@0 417 *
aoqi@0 418 * Compiling code...
aoqi@0 419 *
aoqi@0 420 *
aoqi@0 421 */
aoqi@0 422 public static String WSIMPORT_COMPILING_CODE() {
aoqi@0 423 return localizer.localize(localizableWSIMPORT_COMPILING_CODE());
aoqi@0 424 }
aoqi@0 425
aoqi@0 426 public static Localizable localizableWSIMPORT_READING_AUTH_FILE(Object arg0) {
aoqi@0 427 return messageFactory.getMessage("wsimport.readingAuthFile", arg0);
aoqi@0 428 }
aoqi@0 429
aoqi@0 430 /**
aoqi@0 431 * Trying to read authorization file : "{0}"...
aoqi@0 432 *
aoqi@0 433 */
aoqi@0 434 public static String WSIMPORT_READING_AUTH_FILE(Object arg0) {
aoqi@0 435 return localizer.localize(localizableWSIMPORT_READING_AUTH_FILE(arg0));
aoqi@0 436 }
aoqi@0 437
aoqi@0 438 public static Localizable localizableWSCOMPILE_UNSUPPORTED_ENCODING(Object arg0) {
aoqi@0 439 return messageFactory.getMessage("wscompile.unsupportedEncoding", arg0);
aoqi@0 440 }
aoqi@0 441
aoqi@0 442 /**
aoqi@0 443 * unsupported encoding: {0}
aoqi@0 444 *
aoqi@0 445 */
aoqi@0 446 public static String WSCOMPILE_UNSUPPORTED_ENCODING(Object arg0) {
aoqi@0 447 return localizer.localize(localizableWSCOMPILE_UNSUPPORTED_ENCODING(arg0));
aoqi@0 448 }
aoqi@0 449
aoqi@0 450 public static Localizable localizableWSGEN_NO_WEBSERVICES_CLASS(Object arg0) {
aoqi@0 451 return messageFactory.getMessage("wsgen.no.webservices.class", arg0);
aoqi@0 452 }
aoqi@0 453
aoqi@0 454 /**
aoqi@0 455 * wsgen did not find any class with @WebService annotation. Please specify @WebService annotation on {0}.
aoqi@0 456 *
aoqi@0 457 */
aoqi@0 458 public static String WSGEN_NO_WEBSERVICES_CLASS(Object arg0) {
aoqi@0 459 return localizer.localize(localizableWSGEN_NO_WEBSERVICES_CLASS(arg0));
aoqi@0 460 }
aoqi@0 461
aoqi@0 462 public static Localizable localizableWSIMPORT_ARCHIVE_ARTIFACT(Object arg0, Object arg1) {
aoqi@0 463 return messageFactory.getMessage("wsimport.archiveArtifact", arg0, arg1);
aoqi@0 464 }
aoqi@0 465
aoqi@0 466 /**
aoqi@0 467 * Adding {0} to the archive {1}
aoqi@0 468 *
aoqi@0 469 */
aoqi@0 470 public static String WSIMPORT_ARCHIVE_ARTIFACT(Object arg0, Object arg1) {
aoqi@0 471 return localizer.localize(localizableWSIMPORT_ARCHIVE_ARTIFACT(arg0, arg1));
aoqi@0 472 }
aoqi@0 473
aoqi@0 474 public static Localizable localizableWSCOMPILE_NO_SUCH_DIRECTORY(Object arg0) {
aoqi@0 475 return messageFactory.getMessage("wscompile.noSuchDirectory", arg0);
aoqi@0 476 }
aoqi@0 477
aoqi@0 478 /**
aoqi@0 479 * directory not found: {0}
aoqi@0 480 *
aoqi@0 481 */
aoqi@0 482 public static String WSCOMPILE_NO_SUCH_DIRECTORY(Object arg0) {
aoqi@0 483 return localizer.localize(localizableWSCOMPILE_NO_SUCH_DIRECTORY(arg0));
aoqi@0 484 }
aoqi@0 485
aoqi@0 486 public static Localizable localizableWSCOMPILE_INFO(Object arg0) {
aoqi@0 487 return messageFactory.getMessage("wscompile.info", arg0);
aoqi@0 488 }
aoqi@0 489
aoqi@0 490 /**
aoqi@0 491 * info: {0}
aoqi@0 492 *
aoqi@0 493 */
aoqi@0 494 public static String WSCOMPILE_INFO(Object arg0) {
aoqi@0 495 return localizer.localize(localizableWSCOMPILE_INFO(arg0));
aoqi@0 496 }
aoqi@0 497
aoqi@0 498 public static Localizable localizableWSIMPORT_MAX_REDIRECT_ATTEMPT() {
aoqi@0 499 return messageFactory.getMessage("wsimport.maxRedirectAttempt");
aoqi@0 500 }
aoqi@0 501
aoqi@0 502 /**
aoqi@0 503 * Can not get a WSDL maximum number of redirects(5) reached
aoqi@0 504 *
aoqi@0 505 */
aoqi@0 506 public static String WSIMPORT_MAX_REDIRECT_ATTEMPT() {
aoqi@0 507 return localizer.localize(localizableWSIMPORT_MAX_REDIRECT_ATTEMPT());
aoqi@0 508 }
aoqi@0 509
aoqi@0 510 public static Localizable localizableWSIMPORT_WARNING_MESSAGE(Object arg0) {
aoqi@0 511 return messageFactory.getMessage("wsimport.WarningMessage", arg0);
aoqi@0 512 }
aoqi@0 513
aoqi@0 514 /**
aoqi@0 515 * [WARNING] {0}
aoqi@0 516 *
aoqi@0 517 */
aoqi@0 518 public static String WSIMPORT_WARNING_MESSAGE(Object arg0) {
aoqi@0 519 return localizer.localize(localizableWSIMPORT_WARNING_MESSAGE(arg0));
aoqi@0 520 }
aoqi@0 521
aoqi@0 522 public static Localizable localizableWSCOMPILE_INVALID_OPTION(Object arg0) {
aoqi@0 523 return messageFactory.getMessage("wscompile.invalidOption", arg0);
aoqi@0 524 }
aoqi@0 525
aoqi@0 526 /**
aoqi@0 527 * unrecognized parameter {0}
aoqi@0 528 *
aoqi@0 529 */
aoqi@0 530 public static String WSCOMPILE_INVALID_OPTION(Object arg0) {
aoqi@0 531 return localizer.localize(localizableWSCOMPILE_INVALID_OPTION(arg0));
aoqi@0 532 }
aoqi@0 533
aoqi@0 534 public static Localizable localizableWSIMPORT_ERROR_MESSAGE(Object arg0) {
aoqi@0 535 return messageFactory.getMessage("wsimport.ErrorMessage", arg0);
aoqi@0 536 }
aoqi@0 537
aoqi@0 538 /**
aoqi@0 539 * [ERROR] {0}
aoqi@0 540 *
aoqi@0 541 */
aoqi@0 542 public static String WSIMPORT_ERROR_MESSAGE(Object arg0) {
aoqi@0 543 return localizer.localize(localizableWSIMPORT_ERROR_MESSAGE(arg0));
aoqi@0 544 }
aoqi@0 545
aoqi@0 546 public static Localizable localizableWSIMPORT_GENERATING_CODE() {
aoqi@0 547 return messageFactory.getMessage("wsimport.GeneratingCode");
aoqi@0 548 }
aoqi@0 549
aoqi@0 550 /**
aoqi@0 551 *
aoqi@0 552 * Generating code...
aoqi@0 553 *
aoqi@0 554 *
aoqi@0 555 */
aoqi@0 556 public static String WSIMPORT_GENERATING_CODE() {
aoqi@0 557 return localizer.localize(localizableWSIMPORT_GENERATING_CODE());
aoqi@0 558 }
aoqi@0 559
aoqi@0 560 public static Localizable localizableWSGEN() {
aoqi@0 561 return messageFactory.getMessage("wsgen");
aoqi@0 562 }
aoqi@0 563
aoqi@0 564 /**
aoqi@0 565 * -wsdl:protocol XSoap1.2 -extenson {1}
aoqi@0 566 *
aoqi@0 567 */
aoqi@0 568 public static String WSGEN() {
aoqi@0 569 return localizer.localize(localizableWSGEN());
aoqi@0 570 }
aoqi@0 571
aoqi@0 572 public static Localizable localizableWSIMPORT_NOT_A_FILE_NOR_URL(Object arg0) {
aoqi@0 573 return messageFactory.getMessage("wsimport.NotAFileNorURL", arg0);
aoqi@0 574 }
aoqi@0 575
aoqi@0 576 /**
aoqi@0 577 * "{0}" is neither a file name nor an URL
aoqi@0 578 *
aoqi@0 579 */
aoqi@0 580 public static String WSIMPORT_NOT_A_FILE_NOR_URL(Object arg0) {
aoqi@0 581 return localizer.localize(localizableWSIMPORT_NOT_A_FILE_NOR_URL(arg0));
aoqi@0 582 }
aoqi@0 583
aoqi@0 584 public static Localizable localizableWSCOMPILE_WARNING(Object arg0) {
aoqi@0 585 return messageFactory.getMessage("wscompile.warning", arg0);
aoqi@0 586 }
aoqi@0 587
aoqi@0 588 /**
aoqi@0 589 * warning: {0}
aoqi@0 590 *
aoqi@0 591 */
aoqi@0 592 public static String WSCOMPILE_WARNING(Object arg0) {
aoqi@0 593 return localizer.localize(localizableWSCOMPILE_WARNING(arg0));
aoqi@0 594 }
aoqi@0 595
aoqi@0 596 public static Localizable localizableWRAPPER_TASK_NEED_ENDORSED(Object arg0, Object arg1, Object arg2) {
aoqi@0 597 return messageFactory.getMessage("wrapperTask.needEndorsed", arg0, arg1, arg2);
aoqi@0 598 }
aoqi@0 599
aoqi@0 600 /**
aoqi@0 601 * You are running on JDK6 which comes with JAX-WS {0} API, but this tool requires JAX-WS {1} API. Use the endorsed standards override mechanism (http://docs.oracle.com/javase/6/docs/technotes/guides/standards/), or set xendorsed="true" on <{2}>.
aoqi@0 602 *
aoqi@0 603 */
aoqi@0 604 public static String WRAPPER_TASK_NEED_ENDORSED(Object arg0, Object arg1, Object arg2) {
aoqi@0 605 return localizer.localize(localizableWRAPPER_TASK_NEED_ENDORSED(arg0, arg1, arg2));
aoqi@0 606 }
aoqi@0 607
aoqi@0 608 public static Localizable localizableWSIMPORT_NO_SUCH_JAXB_OPTION(Object arg0) {
aoqi@0 609 return messageFactory.getMessage("wsimport.noSuchJaxbOption", arg0);
aoqi@0 610 }
aoqi@0 611
aoqi@0 612 /**
aoqi@0 613 * no such JAXB option: {0}
aoqi@0 614 *
aoqi@0 615 */
aoqi@0 616 public static String WSIMPORT_NO_SUCH_JAXB_OPTION(Object arg0) {
aoqi@0 617 return localizer.localize(localizableWSIMPORT_NO_SUCH_JAXB_OPTION(arg0));
aoqi@0 618 }
aoqi@0 619
aoqi@0 620 public static Localizable localizableWSGEN_VERSION(Object arg0) {
aoqi@0 621 return messageFactory.getMessage("wsgen.version", arg0);
aoqi@0 622 }
aoqi@0 623
aoqi@0 624 /**
aoqi@0 625 * wsgen version "{0}"
aoqi@0 626 *
aoqi@0 627 */
aoqi@0 628 public static String WSGEN_VERSION(Object arg0) {
aoqi@0 629 return localizer.localize(localizableWSGEN_VERSION(arg0));
aoqi@0 630 }
aoqi@0 631
aoqi@0 632 public static Localizable localizableWSIMPORT_AUTH_FILE_NOT_FOUND(Object arg0, Object arg1) {
aoqi@0 633 return messageFactory.getMessage("wsimport.authFileNotFound", arg0, arg1);
aoqi@0 634 }
aoqi@0 635
aoqi@0 636 /**
aoqi@0 637 * Authorization file "{0}" not found. If the WSDL access needs Basic Authentication, please provide authorization file with read access at {1} or use -Xauthfile to give the authorization file and on each line provide authorization information using this format : http[s]://user:password@host:port//<url-path>
aoqi@0 638 *
aoqi@0 639 */
aoqi@0 640 public static String WSIMPORT_AUTH_FILE_NOT_FOUND(Object arg0, Object arg1) {
aoqi@0 641 return localizer.localize(localizableWSIMPORT_AUTH_FILE_NOT_FOUND(arg0, arg1));
aoqi@0 642 }
aoqi@0 643
aoqi@0 644 public static Localizable localizableWSIMPORT_DEBUG_MESSAGE(Object arg0) {
aoqi@0 645 return messageFactory.getMessage("wsimport.DebugMessage", arg0);
aoqi@0 646 }
aoqi@0 647
aoqi@0 648 /**
aoqi@0 649 * [DEBUG] {0}
aoqi@0 650 *
aoqi@0 651 */
aoqi@0 652 public static String WSIMPORT_DEBUG_MESSAGE(Object arg0) {
aoqi@0 653 return localizer.localize(localizableWSIMPORT_DEBUG_MESSAGE(arg0));
aoqi@0 654 }
aoqi@0 655
aoqi@0 656 public static Localizable localizableWSGEN_COULD_NOT_CREATE_FILE(Object arg0) {
aoqi@0 657 return messageFactory.getMessage("wsgen.could.not.create.file", arg0);
aoqi@0 658 }
aoqi@0 659
aoqi@0 660 /**
aoqi@0 661 * "Could not create file: "{0}"
aoqi@0 662 *
aoqi@0 663 */
aoqi@0 664 public static String WSGEN_COULD_NOT_CREATE_FILE(Object arg0) {
aoqi@0 665 return localizer.localize(localizableWSGEN_COULD_NOT_CREATE_FILE(arg0));
aoqi@0 666 }
aoqi@0 667
aoqi@0 668 public static Localizable localizableWSGEN_WSDL_ARG_NO_GENWSDL(Object arg0) {
aoqi@0 669 return messageFactory.getMessage("wsgen.wsdl.arg.no.genwsdl", arg0);
aoqi@0 670 }
aoqi@0 671
aoqi@0 672 /**
aoqi@0 673 * The "{0}" option can only be in conjunction with the "-wsdl" option.
aoqi@0 674 *
aoqi@0 675 */
aoqi@0 676 public static String WSGEN_WSDL_ARG_NO_GENWSDL(Object arg0) {
aoqi@0 677 return localizer.localize(localizableWSGEN_WSDL_ARG_NO_GENWSDL(arg0));
aoqi@0 678 }
aoqi@0 679
aoqi@0 680 public static Localizable localizableWSGEN_HELP(Object arg0, Object arg1, Object arg2) {
aoqi@0 681 return messageFactory.getMessage("wsgen.help", arg0, arg1, arg2);
aoqi@0 682 }
aoqi@0 683
aoqi@0 684 /**
aoqi@0 685 *
aoqi@0 686 * Usage: {0} [options] <SEI>
aoqi@0 687 *
aoqi@0 688 * where [options] include:
aoqi@0 689 * -classpath <path> specify where to find input class files and wsgen extensions
aoqi@0 690 * -cp <path> specify where to find input class files and wsgen extensions
aoqi@0 691 * -d <directory> specify where to place generated output files
aoqi@0 692 * -encoding <encoding> specify character encoding used by source files
aoqi@0 693 * -extension allow vendor extensions - functionality not specified
aoqi@0 694 * by the specification. Use of extensions may
aoqi@0 695 * result in applications that are not portable or
aoqi@0 696 * may not interoperate with other implementations
aoqi@0 697 * -help display help
aoqi@0 698 * -J<javacOption> pass this option to javac
aoqi@0 699 * -keep keep generated files
aoqi@0 700 * -r <directory> resource destination directory, specify where to
aoqi@0 701 * place resouce files such as WSDLs
aoqi@0 702 * -s <directory> specify where to place generated source files
aoqi@0 703 * -verbose output messages about what the compiler is doing
aoqi@0 704 * -version print version information
aoqi@0 705 * -fullversion print full version information
aoqi@0 706 * -wsdl[:protocol] generate a WSDL file. The protocol is optional.
aoqi@0 707 * Valid protocols are {1},
aoqi@0 708 * the default is soap1.1.
aoqi@0 709 * The non standard protocols {2}
aoqi@0 710 * can only be used in conjunction with the
aoqi@0 711 * -extension option.
aoqi@0 712 * -inlineSchemas inline schemas in the generated wsdl. Must be
aoqi@0 713 * used in conjunction with the -wsdl option.
aoqi@0 714 * -servicename <name> specify the Service name to use in the generated WSDL
aoqi@0 715 * Used in conjunction with the -wsdl option.
aoqi@0 716 * -portname <name> specify the Port name to use in the generated WSDL
aoqi@0 717 * Used in conjunction with the -wsdl option.
aoqi@0 718 * -x <file> specify External Web Service Metadata xml descriptor
aoqi@0 719 *
aoqi@0 720 */
aoqi@0 721 public static String WSGEN_HELP(Object arg0, Object arg1, Object arg2) {
aoqi@0 722 return localizer.localize(localizableWSGEN_HELP(arg0, arg1, arg2));
aoqi@0 723 }
aoqi@0 724
aoqi@0 725 public static Localizable localizableWSIMPORT_INFO_MESSAGE(Object arg0) {
aoqi@0 726 return messageFactory.getMessage("wsimport.InfoMessage", arg0);
aoqi@0 727 }
aoqi@0 728
aoqi@0 729 /**
aoqi@0 730 * [INFO] {0}
aoqi@0 731 *
aoqi@0 732 */
aoqi@0 733 public static String WSIMPORT_INFO_MESSAGE(Object arg0) {
aoqi@0 734 return localizer.localize(localizableWSIMPORT_INFO_MESSAGE(arg0));
aoqi@0 735 }
aoqi@0 736
aoqi@0 737 public static Localizable localizableWSGEN_INLINE_SCHEMAS_ONLY_WITH_WSDL() {
aoqi@0 738 return messageFactory.getMessage("wsgen.inlineSchemas.only.with.wsdl");
aoqi@0 739 }
aoqi@0 740
aoqi@0 741 /**
aoqi@0 742 * "-inlineSchemas" must be used in conjunction with the "-wsdl" option
aoqi@0 743 *
aoqi@0 744 */
aoqi@0 745 public static String WSGEN_INLINE_SCHEMAS_ONLY_WITH_WSDL() {
aoqi@0 746 return localizer.localize(localizableWSGEN_INLINE_SCHEMAS_ONLY_WITH_WSDL());
aoqi@0 747 }
aoqi@0 748
aoqi@0 749 public static Localizable localizableWSGEN_SOAP_12_WITHOUT_EXTENSION() {
aoqi@0 750 return messageFactory.getMessage("wsgen.soap12.without.extension");
aoqi@0 751 }
aoqi@0 752
aoqi@0 753 /**
aoqi@0 754 * The optional protocol "Xsoap1.2" must be used in conjunction with the "-extension" option.
aoqi@0 755 *
aoqi@0 756 */
aoqi@0 757 public static String WSGEN_SOAP_12_WITHOUT_EXTENSION() {
aoqi@0 758 return localizer.localize(localizableWSGEN_SOAP_12_WITHOUT_EXTENSION());
aoqi@0 759 }
aoqi@0 760
aoqi@0 761 public static Localizable localizableWSIMPORT_ILLEGAL_AUTH_INFO(Object arg0) {
aoqi@0 762 return messageFactory.getMessage("wsimport.ILLEGAL_AUTH_INFO", arg0);
aoqi@0 763 }
aoqi@0 764
aoqi@0 765 /**
aoqi@0 766 * "{0}" is not a valid authorization information format. The format is http[s]://user:password@host:port//<url-path>.
aoqi@0 767 *
aoqi@0 768 */
aoqi@0 769 public static String WSIMPORT_ILLEGAL_AUTH_INFO(Object arg0) {
aoqi@0 770 return localizer.localize(localizableWSIMPORT_ILLEGAL_AUTH_INFO(arg0));
aoqi@0 771 }
aoqi@0 772
aoqi@0 773 public static Localizable localizableWSCOMPILE_COMPILATION_FAILED() {
aoqi@0 774 return messageFactory.getMessage("wscompile.compilationFailed");
aoqi@0 775 }
aoqi@0 776
aoqi@0 777 /**
aoqi@0 778 * compilation failed, errors should have been reported
aoqi@0 779 *
aoqi@0 780 */
aoqi@0 781 public static String WSCOMPILE_COMPILATION_FAILED() {
aoqi@0 782 return localizer.localize(localizableWSCOMPILE_COMPILATION_FAILED());
aoqi@0 783 }
aoqi@0 784
aoqi@0 785 public static Localizable localizableWSCOMPILE_MISSING_OPTION_ARGUMENT(Object arg0) {
aoqi@0 786 return messageFactory.getMessage("wscompile.missingOptionArgument", arg0);
aoqi@0 787 }
aoqi@0 788
aoqi@0 789 /**
aoqi@0 790 * option "{0}" requires an argument
aoqi@0 791 *
aoqi@0 792 */
aoqi@0 793 public static String WSCOMPILE_MISSING_OPTION_ARGUMENT(Object arg0) {
aoqi@0 794 return localizer.localize(localizableWSCOMPILE_MISSING_OPTION_ARGUMENT(arg0));
aoqi@0 795 }
aoqi@0 796
aoqi@0 797 public static Localizable localizableWSIMPORT_DOCUMENT_DOWNLOAD(Object arg0, Object arg1) {
aoqi@0 798 return messageFactory.getMessage("wsimport.document.download", arg0, arg1);
aoqi@0 799 }
aoqi@0 800
aoqi@0 801 /**
aoqi@0 802 *
aoqi@0 803 * Downloading metadata document from {0} to {1}
aoqi@0 804 *
aoqi@0 805 */
aoqi@0 806 public static String WSIMPORT_DOCUMENT_DOWNLOAD(Object arg0, Object arg1) {
aoqi@0 807 return localizer.localize(localizableWSIMPORT_DOCUMENT_DOWNLOAD(arg0, arg1));
aoqi@0 808 }
aoqi@0 809
aoqi@0 810 public static Localizable localizableWSGEN_CANNOT_GEN_WSDL_FOR_NON_SOAP_BINDING(Object arg0, Object arg1) {
aoqi@0 811 return messageFactory.getMessage("wsgen.cannot.gen.wsdl.for.non.soap.binding", arg0, arg1);
aoqi@0 812 }
aoqi@0 813
aoqi@0 814 /**
aoqi@0 815 * wsgen can not generate WSDL for non-SOAP binding: {0} on Class {1}
aoqi@0 816 *
aoqi@0 817 */
aoqi@0 818 public static String WSGEN_CANNOT_GEN_WSDL_FOR_NON_SOAP_BINDING(Object arg0, Object arg1) {
aoqi@0 819 return localizer.localize(localizableWSGEN_CANNOT_GEN_WSDL_FOR_NON_SOAP_BINDING(arg0, arg1));
aoqi@0 820 }
aoqi@0 821
aoqi@0 822 public static Localizable localizableWSCOMPILE_DUPLICATE_OPTION(Object arg0) {
aoqi@0 823 return messageFactory.getMessage("wscompile.duplicateOption", arg0);
aoqi@0 824 }
aoqi@0 825
aoqi@0 826 /**
aoqi@0 827 * duplicate option: {0}
aoqi@0 828 *
aoqi@0 829 */
aoqi@0 830 public static String WSCOMPILE_DUPLICATE_OPTION(Object arg0) {
aoqi@0 831 return localizer.localize(localizableWSCOMPILE_DUPLICATE_OPTION(arg0));
aoqi@0 832 }
aoqi@0 833
aoqi@0 834 public static Localizable localizableWSIMPORT_FAILED_TO_PARSE(Object arg0, Object arg1) {
aoqi@0 835 return messageFactory.getMessage("wsimport.FailedToParse", arg0, arg1);
aoqi@0 836 }
aoqi@0 837
aoqi@0 838 /**
aoqi@0 839 * Failed to parse "{0}": {1}
aoqi@0 840 *
aoqi@0 841 */
aoqi@0 842 public static String WSIMPORT_FAILED_TO_PARSE(Object arg0, Object arg1) {
aoqi@0 843 return localizer.localize(localizableWSIMPORT_FAILED_TO_PARSE(arg0, arg1));
aoqi@0 844 }
aoqi@0 845
aoqi@0 846 public static Localizable localizableWSIMPORT_NO_WSDL(Object arg0) {
aoqi@0 847 return messageFactory.getMessage("wsimport.no.wsdl", arg0);
aoqi@0 848 }
aoqi@0 849
aoqi@0 850 /**
aoqi@0 851 * Failed to read the WSDL document: {0}, because 1) could not find the document; /2) the document could not be read; 3) the root element of the document is not <wsdl:definitions>.
aoqi@0 852 *
aoqi@0 853 */
aoqi@0 854 public static String WSIMPORT_NO_WSDL(Object arg0) {
aoqi@0 855 return localizer.localize(localizableWSIMPORT_NO_WSDL(arg0));
aoqi@0 856 }
aoqi@0 857
aoqi@0 858 public static Localizable localizableWSIMPORT_AUTH_INFO_LINENO(Object arg0, Object arg1) {
aoqi@0 859 return messageFactory.getMessage("wsimport.AUTH_INFO_LINENO", arg0, arg1);
aoqi@0 860 }
aoqi@0 861
aoqi@0 862 /**
aoqi@0 863 * "line {0} of {1}
aoqi@0 864 *
aoqi@0 865 */
aoqi@0 866 public static String WSIMPORT_AUTH_INFO_LINENO(Object arg0, Object arg1) {
aoqi@0 867 return localizer.localize(localizableWSIMPORT_AUTH_INFO_LINENO(arg0, arg1));
aoqi@0 868 }
aoqi@0 869
aoqi@0 870 public static Localizable localizableWSGEN_SERVICENAME_MISSING_LOCALNAME(Object arg0) {
aoqi@0 871 return messageFactory.getMessage("wsgen.servicename.missing.localname", arg0);
aoqi@0 872 }
aoqi@0 873
aoqi@0 874 /**
aoqi@0 875 * The service name "{0}" is missing a localname.
aoqi@0 876 *
aoqi@0 877 */
aoqi@0 878 public static String WSGEN_SERVICENAME_MISSING_LOCALNAME(Object arg0) {
aoqi@0 879 return localizer.localize(localizableWSGEN_SERVICENAME_MISSING_LOCALNAME(arg0));
aoqi@0 880 }
aoqi@0 881
aoqi@0 882 public static Localizable localizableWSGEN_USAGE(Object arg0) {
aoqi@0 883 return messageFactory.getMessage("wsgen.usage", arg0);
aoqi@0 884 }
aoqi@0 885
aoqi@0 886 /**
aoqi@0 887 * Usage: {0} [options] <SEI>
aoqi@0 888 *
aoqi@0 889 * Use "wsgen -help" for a detailed description of options.
aoqi@0 890 *
aoqi@0 891 */
aoqi@0 892 public static String WSGEN_USAGE(Object arg0) {
aoqi@0 893 return localizer.localize(localizableWSGEN_USAGE(arg0));
aoqi@0 894 }
aoqi@0 895
aoqi@0 896 public static Localizable localizableWSGEN_SERVICENAME_MISSING_NAMESPACE(Object arg0) {
aoqi@0 897 return messageFactory.getMessage("wsgen.servicename.missing.namespace", arg0);
aoqi@0 898 }
aoqi@0 899
aoqi@0 900 /**
aoqi@0 901 * The service name "{0}" is missing a namespace.
aoqi@0 902 *
aoqi@0 903 */
aoqi@0 904 public static String WSGEN_SERVICENAME_MISSING_NAMESPACE(Object arg0) {
aoqi@0 905 return localizer.localize(localizableWSGEN_SERVICENAME_MISSING_NAMESPACE(arg0));
aoqi@0 906 }
aoqi@0 907
aoqi@0 908 public static Localizable localizableWSGEN_INVALID_TRANSPORT(Object arg0, Object arg1) {
aoqi@0 909 return messageFactory.getMessage("wsgen.invalid.transport", arg0, arg1);
aoqi@0 910 }
aoqi@0 911
aoqi@0 912 /**
aoqi@0 913 * "{0}" is not a supported transport. Supported transport includes: {1}.
aoqi@0 914 *
aoqi@0 915 */
aoqi@0 916 public static String WSGEN_INVALID_TRANSPORT(Object arg0, Object arg1) {
aoqi@0 917 return localizer.localize(localizableWSGEN_INVALID_TRANSPORT(arg0, arg1));
aoqi@0 918 }
aoqi@0 919
aoqi@0 920 public static Localizable localizableWSGEN_CANNOT_GEN_WSDL_FOR_SOAP_12_BINDING(Object arg0, Object arg1) {
aoqi@0 921 return messageFactory.getMessage("wsgen.cannot.gen.wsdl.for.soap12.binding", arg0, arg1);
aoqi@0 922 }
aoqi@0 923
aoqi@0 924 /**
aoqi@0 925 * wsgen can not generate WSDL for SOAP 1.2 binding: {0} on class: {1}.
aoqi@0 926 *
aoqi@0 927 *
aoqi@0 928 */
aoqi@0 929 public static String WSGEN_CANNOT_GEN_WSDL_FOR_SOAP_12_BINDING(Object arg0, Object arg1) {
aoqi@0 930 return localizer.localize(localizableWSGEN_CANNOT_GEN_WSDL_FOR_SOAP_12_BINDING(arg0, arg1));
aoqi@0 931 }
aoqi@0 932
aoqi@0 933 public static Localizable localizableWSIMPORT_ILLEGAL_TARGET_VERSION(Object arg0) {
aoqi@0 934 return messageFactory.getMessage("wsimport.ILLEGAL_TARGET_VERSION", arg0);
aoqi@0 935 }
aoqi@0 936
aoqi@0 937 /**
aoqi@0 938 * "{0}" is not a valid target version. "2.0" and "2.1" are supported.
aoqi@0 939 *
aoqi@0 940 */
aoqi@0 941 public static String WSIMPORT_ILLEGAL_TARGET_VERSION(Object arg0) {
aoqi@0 942 return localizer.localize(localizableWSIMPORT_ILLEGAL_TARGET_VERSION(arg0));
aoqi@0 943 }
aoqi@0 944
aoqi@0 945 public static Localizable localizableWSIMPORT_ILLEGAL_PROXY(Object arg0) {
aoqi@0 946 return messageFactory.getMessage("wsimport.ILLEGAL_PROXY", arg0);
aoqi@0 947 }
aoqi@0 948
aoqi@0 949 /**
aoqi@0 950 * "{0}" is not a valid proxy format. The format is [user[:password]@]proxyHost:proxyPort
aoqi@0 951 *
aoqi@0 952 */
aoqi@0 953 public static String WSIMPORT_ILLEGAL_PROXY(Object arg0) {
aoqi@0 954 return localizer.localize(localizableWSIMPORT_ILLEGAL_PROXY(arg0));
aoqi@0 955 }
aoqi@0 956
aoqi@0 957 public static Localizable localizableWSGEN_PORTNAME_MISSING_LOCALNAME(Object arg0) {
aoqi@0 958 return messageFactory.getMessage("wsgen.portname.missing.localname", arg0);
aoqi@0 959 }
aoqi@0 960
aoqi@0 961 /**
aoqi@0 962 * The port name "{0}" is missing a localname.
aoqi@0 963 *
aoqi@0 964 */
aoqi@0 965 public static String WSGEN_PORTNAME_MISSING_LOCALNAME(Object arg0) {
aoqi@0 966 return localizer.localize(localizableWSGEN_PORTNAME_MISSING_LOCALNAME(arg0));
aoqi@0 967 }
aoqi@0 968
aoqi@0 969 public static Localizable localizableWSGEN_PORTNAME_MISSING_NAMESPACE(Object arg0) {
aoqi@0 970 return messageFactory.getMessage("wsgen.portname.missing.namespace", arg0);
aoqi@0 971 }
aoqi@0 972
aoqi@0 973 /**
aoqi@0 974 * The port name "{0}" is missing a namespace.
aoqi@0 975 *
aoqi@0 976 */
aoqi@0 977 public static String WSGEN_PORTNAME_MISSING_NAMESPACE(Object arg0) {
aoqi@0 978 return localizer.localize(localizableWSGEN_PORTNAME_MISSING_NAMESPACE(arg0));
aoqi@0 979 }
aoqi@0 980
aoqi@0 981 public static Localizable localizableWSIMPORT_FULLVERSION(Object arg0) {
aoqi@0 982 return messageFactory.getMessage("wsimport.fullversion", arg0);
aoqi@0 983 }
aoqi@0 984
aoqi@0 985 /**
aoqi@0 986 * wsimport full version "{0}"
aoqi@0 987 *
aoqi@0 988 */
aoqi@0 989 public static String WSIMPORT_FULLVERSION(Object arg0) {
aoqi@0 990 return localizer.localize(localizableWSIMPORT_FULLVERSION(arg0));
aoqi@0 991 }
aoqi@0 992
aoqi@0 993 }

mercurial