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

Tue, 09 Apr 2013 14:51:13 +0100

author
alanb
date
Tue, 09 Apr 2013 14:51:13 +0100
changeset 368
0989ad8c0860
parent 286
f50545b5e2f1
child 408
b0610cd08440
permissions
-rw-r--r--

8010393: Update JAX-WS RI to 2.2.9-b12941
Reviewed-by: alanb, erikj
Contributed-by: miroslav.kos@oracle.com, martin.grebac@oracle.com

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

mercurial