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

changeset 408
b0610cd08440
parent 368
0989ad8c0860
child 637
9c07ef4934dd
equal deleted inserted replaced
405:cc682329886b 408:b0610cd08440
267 */ 267 */
268 public static String WSIMPORT_USAGE(Object arg0) { 268 public static String WSIMPORT_USAGE(Object arg0) {
269 return localizer.localize(localizableWSIMPORT_USAGE(arg0)); 269 return localizer.localize(localizableWSIMPORT_USAGE(arg0));
270 } 270 }
271 271
272 public static Localizable localizableWSGEN_USAGE_EXTENSIONS() {
273 return messageFactory.getMessage("wsgen.usage.extensions");
274 }
275
276 /**
277 *
278 * Extensions:
279 * -Xnocompile do not compile generated Java files
280 *
281 */
282 public static String WSGEN_USAGE_EXTENSIONS() {
283 return localizer.localize(localizableWSGEN_USAGE_EXTENSIONS());
284 }
285
272 public static Localizable localizablePLEASE() { 286 public static Localizable localizablePLEASE() {
273 return messageFactory.getMessage("Please"); 287 return messageFactory.getMessage("Please");
274 } 288 }
275 289
276 /** 290 /**
279 * 293 *
280 * 294 *
281 */ 295 */
282 public static String PLEASE() { 296 public static String PLEASE() {
283 return localizer.localize(localizablePLEASE()); 297 return localizer.localize(localizablePLEASE());
298 }
299
300 public static Localizable localizableWSCOMPILE_EXISTING_OPTION(Object arg0) {
301 return messageFactory.getMessage("wscompile.existingOption", arg0);
302 }
303
304 /**
305 * Ignoring already defined option {0}
306 *
307 *
308 */
309 public static String WSCOMPILE_EXISTING_OPTION(Object arg0) {
310 return localizer.localize(localizableWSCOMPILE_EXISTING_OPTION(arg0));
284 } 311 }
285 312
286 public static Localizable localizableWSIMPORT_PARSING_WSDL() { 313 public static Localizable localizableWSIMPORT_PARSING_WSDL() {
287 return messageFactory.getMessage("wsimport.ParsingWSDL"); 314 return messageFactory.getMessage("wsimport.ParsingWSDL");
288 } 315 }
321 * -b <path> specify jaxws/jaxb binding files or additional schemas 348 * -b <path> specify jaxws/jaxb binding files or additional schemas
322 * (Each <path> must have its own -b) 349 * (Each <path> must have its own -b)
323 * -B<jaxbOption> Pass this option to JAXB schema compiler 350 * -B<jaxbOption> Pass this option to JAXB schema compiler
324 * -catalog <file> specify catalog file to resolve external entity references 351 * -catalog <file> specify catalog file to resolve external entity references
325 * supports TR9401, XCatalog, and OASIS XML Catalog format. 352 * supports TR9401, XCatalog, and OASIS XML Catalog format.
353 * -classpath <path> specify where to find user class files and wsimport extensions
354 * -cp <path> specify where to find user class files and wsimport extensions
326 * -d <directory> specify where to place generated output files 355 * -d <directory> specify where to place generated output files
327 * -encoding <encoding> specify character encoding used by source files 356 * -encoding <encoding> specify character encoding used by source files
328 * -extension allow vendor extensions - functionality not specified 357 * -extension allow vendor extensions - functionality not specified
329 * by the specification. Use of extensions may 358 * by the specification. Use of extensions may
330 * result in applications that are not portable or 359 * result in applications that are not portable or
331 * may not interoperate with other implementations 360 * may not interoperate with other implementations
332 * -help display help 361 * -help display help
333 * -httpproxy:<proxy> set a HTTP proxy. Format is [user[:password]@]proxyHost:proxyPort 362 * -httpproxy:<proxy> set a HTTP proxy. Format is [user[:password]@]proxyHost:proxyPort
334 * (port defaults to 8080) 363 * (port defaults to 8080)
364 * -J<javacOption> pass this option to javac
335 * -keep keep generated files 365 * -keep keep generated files
336 * -p <pkg> specifies the target package 366 * -p <pkg> specifies the target package
337 * -quiet suppress wsimport output 367 * -quiet suppress wsimport output
338 * -s <directory> specify where to place generated source files 368 * -s <directory> specify where to place generated source files
339 * -target <version> generate code as per the given JAXWS spec version 369 * -target <version> generate code as per the given JAXWS spec version
341 * e.g. 2.0 will generate compliant code for JAXWS 2.0 spec 371 * e.g. 2.0 will generate compliant code for JAXWS 2.0 spec
342 * -verbose output messages about what the compiler is doing 372 * -verbose output messages about what the compiler is doing
343 * -version print version information 373 * -version print version information
344 * -fullversion print full version information 374 * -fullversion print full version information
345 * -wsdllocation <location> @WebServiceClient.wsdlLocation value 375 * -wsdllocation <location> @WebServiceClient.wsdlLocation value
346 * -clientjar <jarfile> Creates the jar file of the generated artifacts along with the 376 * -clientjar <jarfile> creates the jar file of the generated artifacts along with the
347 * WSDL metadata required for invoking the web service. 377 * WSDL metadata required for invoking the web service.
348 * -generateJWS generate stubbed JWS implementation file 378 * -generateJWS generate stubbed JWS implementation file
349 * -implDestDir <directory> specify where to generate JWS implementation file 379 * -implDestDir <directory> specify where to generate JWS implementation file
350 * -implServiceName <name> local portion of service name for generated JWS implementation 380 * -implServiceName <name> local portion of service name for generated JWS implementation
351 * -implPortName <name> local portion of port name for generated JWS implementation 381 * -implPortName <name> local portion of port name for generated JWS implementation
654 /** 684 /**
655 * 685 *
656 * Usage: {0} [options] <SEI> 686 * Usage: {0} [options] <SEI>
657 * 687 *
658 * where [options] include: 688 * where [options] include:
659 * -classpath <path> specify where to find input class files 689 * -classpath <path> specify where to find input class files and wsgen extensions
660 * -cp <path> same as -classpath <path> 690 * -cp <path> specify where to find input class files and wsgen extensions
661 * -d <directory> specify where to place generated output files 691 * -d <directory> specify where to place generated output files
662 * -encoding <encoding> specify character encoding used by source files 692 * -encoding <encoding> specify character encoding used by source files
663 * -extension allow vendor extensions - functionality not specified 693 * -extension allow vendor extensions - functionality not specified
664 * by the specification. Use of extensions may 694 * by the specification. Use of extensions may
665 * result in applications that are not portable or 695 * result in applications that are not portable or
666 * may not interoperate with other implementations 696 * may not interoperate with other implementations
667 * -help display help 697 * -help display help
698 * -J<javacOption> pass this option to javac
668 * -keep keep generated files 699 * -keep keep generated files
669 * -r <directory> resource destination directory, specify where to 700 * -r <directory> resource destination directory, specify where to
670 * place resouce files such as WSDLs 701 * place resouce files such as WSDLs
671 * -s <directory> specify where to place generated source files 702 * -s <directory> specify where to place generated source files
672 * -verbose output messages about what the compiler is doing 703 * -verbose output messages about what the compiler is doing
673 * -version print version information 704 * -version print version information
674 * -fullversion print full version information 705 * -fullversion print full version information
675 * -wsdl[:protocol] generate a WSDL file. The protocol is optional. 706 * -wsdl[:protocol] generate a WSDL file. The protocol is optional.
676 * Valid protocols are {1}, 707 * Valid protocols are {1},
677 * the default is soap1.1. 708 * the default is soap1.1.
678 * The non stanadard protocols {2} 709 * The non standard protocols {2}
679 * can only be used in conjunction with the 710 * can only be used in conjunction with the
680 * -extension option. 711 * -extension option.
681 * -inlineSchemas inline schemas in the generated wsdl. Must be 712 * -inlineSchemas inline schemas in the generated wsdl. Must be
682 * used in conjunction with the -wsdl option. 713 * used in conjunction with the -wsdl option.
683 * -servicename <name> specify the Service name to use in the generated WSDL 714 * -servicename <name> specify the Service name to use in the generated WSDL
684 * Used in conjunction with the -wsdl option. 715 * Used in conjunction with the -wsdl option.
685 * -portname <name> specify the Port name to use in the generated WSDL 716 * -portname <name> specify the Port name to use in the generated WSDL
686 * Used in conjunction with the -wsdl option. 717 * Used in conjunction with the -wsdl option.
718 * -x <file> specify External Web Service Metadata xml descriptor
687 * 719 *
688 */ 720 */
689 public static String WSGEN_HELP(Object arg0, Object arg1, Object arg2) { 721 public static String WSGEN_HELP(Object arg0, Object arg1, Object arg2) {
690 return localizer.localize(localizableWSGEN_HELP(arg0, arg1, arg2)); 722 return localizer.localize(localizableWSGEN_HELP(arg0, arg1, arg2));
691 } 723 }
833 */ 865 */
834 public static String WSIMPORT_AUTH_INFO_LINENO(Object arg0, Object arg1) { 866 public static String WSIMPORT_AUTH_INFO_LINENO(Object arg0, Object arg1) {
835 return localizer.localize(localizableWSIMPORT_AUTH_INFO_LINENO(arg0, arg1)); 867 return localizer.localize(localizableWSIMPORT_AUTH_INFO_LINENO(arg0, arg1));
836 } 868 }
837 869
870 public static Localizable localizableWSGEN_SERVICENAME_MISSING_LOCALNAME(Object arg0) {
871 return messageFactory.getMessage("wsgen.servicename.missing.localname", arg0);
872 }
873
874 /**
875 * The service name "{0}" is missing a localname.
876 *
877 */
878 public static String WSGEN_SERVICENAME_MISSING_LOCALNAME(Object arg0) {
879 return localizer.localize(localizableWSGEN_SERVICENAME_MISSING_LOCALNAME(arg0));
880 }
881
838 public static Localizable localizableWSGEN_USAGE(Object arg0) { 882 public static Localizable localizableWSGEN_USAGE(Object arg0) {
839 return messageFactory.getMessage("wsgen.usage", arg0); 883 return messageFactory.getMessage("wsgen.usage", arg0);
840 } 884 }
841 885
842 /** 886 /**
847 */ 891 */
848 public static String WSGEN_USAGE(Object arg0) { 892 public static String WSGEN_USAGE(Object arg0) {
849 return localizer.localize(localizableWSGEN_USAGE(arg0)); 893 return localizer.localize(localizableWSGEN_USAGE(arg0));
850 } 894 }
851 895
852 public static Localizable localizableWSGEN_SERVICENAME_MISSING_LOCALNAME(Object arg0) {
853 return messageFactory.getMessage("wsgen.servicename.missing.localname", arg0);
854 }
855
856 /**
857 * The service name "{0}" is missing a localname.
858 *
859 */
860 public static String WSGEN_SERVICENAME_MISSING_LOCALNAME(Object arg0) {
861 return localizer.localize(localizableWSGEN_SERVICENAME_MISSING_LOCALNAME(arg0));
862 }
863
864 public static Localizable localizableWSGEN_SERVICENAME_MISSING_NAMESPACE(Object arg0) { 896 public static Localizable localizableWSGEN_SERVICENAME_MISSING_NAMESPACE(Object arg0) {
865 return messageFactory.getMessage("wsgen.servicename.missing.namespace", arg0); 897 return messageFactory.getMessage("wsgen.servicename.missing.namespace", arg0);
866 } 898 }
867 899
868 /** 900 /**

mercurial