Source Code Cross Referenced for WscompileMessages.java in  » 6.0-JDK-Modules » jax-ws-tools » com » sun » tools » ws » resources » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » jax ws tools » com.sun.tools.ws.resources 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package com.sun.tools.ws.resources;
002:
003:        import com.sun.xml.ws.util.localization.Localizable;
004:        import com.sun.xml.ws.util.localization.LocalizableMessageFactory;
005:        import com.sun.xml.ws.util.localization.Localizer;
006:
007:        /**
008:         * Defines string formatting method for each constant in the resource file
009:         * 
010:         */
011:        public final class WscompileMessages {
012:
013:            private final static LocalizableMessageFactory messageFactory = new LocalizableMessageFactory(
014:                    "com.sun.tools.ws.resources.wscompile");
015:            private final static Localizer localizer = new Localizer();
016:
017:            public static Localizable localizableWSGEN_CLASS_MUST_BE_IMPLEMENTATION_CLASS(
018:                    Object arg0) {
019:                return messageFactory.getMessage(
020:                        "wsgen.class.must.be.implementation.class", arg0);
021:            }
022:
023:            /**
024:             * The class "{0}" is not an endpoint implementation class.
025:             * 
026:             */
027:            public static String WSGEN_CLASS_MUST_BE_IMPLEMENTATION_CLASS(
028:                    Object arg0) {
029:                return localizer
030:                        .localize(localizableWSGEN_CLASS_MUST_BE_IMPLEMENTATION_CLASS(arg0));
031:            }
032:
033:            public static Localizable localizableWSGEN_CLASS_NOT_FOUND(
034:                    Object arg0) {
035:                return messageFactory.getMessage("wsgen.class.not.found", arg0);
036:            }
037:
038:            /**
039:             * Class not found: "{0}"
040:             * 
041:             */
042:            public static String WSGEN_CLASS_NOT_FOUND(Object arg0) {
043:                return localizer
044:                        .localize(localizableWSGEN_CLASS_NOT_FOUND(arg0));
045:            }
046:
047:            public static Localizable localizableWSGEN_USAGE_EXAMPLES() {
048:                return messageFactory.getMessage("wsgen.usage.examples");
049:            }
050:
051:            /**
052:             * 
053:             * Examples:
054:             *   wsgen -cp . example.Stock
055:             *   wsgen -cp . example.Stock -wsdl -servicename '{http://mynamespace}MyService'
056:             * 
057:             * 
058:             */
059:            public static String WSGEN_USAGE_EXAMPLES() {
060:                return localizer.localize(localizableWSGEN_USAGE_EXAMPLES());
061:            }
062:
063:            public static Localizable localizableWRAPPER_TASK_LOADING_20_API(
064:                    Object arg0) {
065:                return messageFactory.getMessage("wrapperTask.loading20Api",
066:                        arg0);
067:            }
068:
069:            /**
070:             * You are loading JAX-WS 2.0 API from {0} but this tool requires JAX-WS 2.1 API.
071:             * 
072:             */
073:            public static String WRAPPER_TASK_LOADING_20_API(Object arg0) {
074:                return localizer
075:                        .localize(localizableWRAPPER_TASK_LOADING_20_API(arg0));
076:            }
077:
078:            public static Localizable localizableWSGEN_INVALID_PROTOCOL(
079:                    Object arg0, Object arg1) {
080:                return messageFactory.getMessage("wsgen.invalid.protocol",
081:                        arg0, arg1);
082:            }
083:
084:            /**
085:             * "{0}" is not a supported protocol.  Supported protocols include: {1}.
086:             * 
087:             */
088:            public static String WSGEN_INVALID_PROTOCOL(Object arg0, Object arg1) {
089:                return localizer.localize(localizableWSGEN_INVALID_PROTOCOL(
090:                        arg0, arg1));
091:            }
092:
093:            public static Localizable localizableWSIMPORT_USAGE_EXAMPLES() {
094:                return messageFactory.getMessage("wsimport.usage.examples");
095:            }
096:
097:            /**
098:             * 
099:             * Examples:
100:             *   wsimport stock.wsdl -b stock.xml -b stock.xjb
101:             *   wsimport -d generated http://example.org/stock?wsdl
102:             * 
103:             * 
104:             */
105:            public static String WSIMPORT_USAGE_EXAMPLES() {
106:                return localizer.localize(localizableWSIMPORT_USAGE_EXAMPLES());
107:            }
108:
109:            public static Localizable localizableINVOKER_NEED_ENDORSED() {
110:                return messageFactory.getMessage("invoker.needEndorsed");
111:            }
112:
113:            /**
114:             * You are running on JDK6 which comes with JAX-WS 2.0 API, but this tool requires JAX-WS 2.1 API. Use the endorsed standards override mechanism (http://java.sun.com/javase/6/docs/technotes/guides/standards/), or use -Xendorsed option.
115:             * 
116:             */
117:            public static String INVOKER_NEED_ENDORSED() {
118:                return localizer.localize(localizableINVOKER_NEED_ENDORSED());
119:            }
120:
121:            public static Localizable localizableWSIMPORT_MISSING_FILE() {
122:                return messageFactory.getMessage("wsimport.missingFile");
123:            }
124:
125:            /**
126:             * Missing WSDL_URI
127:             * 
128:             */
129:            public static String WSIMPORT_MISSING_FILE() {
130:                return localizer.localize(localizableWSIMPORT_MISSING_FILE());
131:            }
132:
133:            public static Localizable localizableWSIMPORT_USAGE(Object arg0) {
134:                return messageFactory.getMessage("wsimport.usage", arg0);
135:            }
136:
137:            /**
138:             * Usage: {0} [options] <WSDL_URI>
139:             * 
140:             * Use "wsimport -help" for a detailed description of options.
141:             * 
142:             */
143:            public static String WSIMPORT_USAGE(Object arg0) {
144:                return localizer.localize(localizableWSIMPORT_USAGE(arg0));
145:            }
146:
147:            public static Localizable localizablePLEASE() {
148:                return messageFactory.getMessage("Please");
149:            }
150:
151:            /**
152:             * specify "-extension" and "-wsdl:protocol XSoap1.2" switches. For example:
153:             * 
154:             * 
155:             * 
156:             */
157:            public static String PLEASE() {
158:                return localizer.localize(localizablePLEASE());
159:            }
160:
161:            public static Localizable localizableWSIMPORT_PARSING_WSDL() {
162:                return messageFactory.getMessage("wsimport.ParsingWSDL");
163:            }
164:
165:            /**
166:             * parsing WSDL...
167:             * 
168:             * 
169:             * 
170:             */
171:            public static String WSIMPORT_PARSING_WSDL() {
172:                return localizer.localize(localizableWSIMPORT_PARSING_WSDL());
173:            }
174:
175:            public static Localizable localizableWSGEN_MISSING_FILE() {
176:                return messageFactory.getMessage("wsgen.missingFile");
177:            }
178:
179:            /**
180:             * Missing SEI
181:             * 
182:             */
183:            public static String WSGEN_MISSING_FILE() {
184:                return localizer.localize(localizableWSGEN_MISSING_FILE());
185:            }
186:
187:            public static Localizable localizableWSIMPORT_HELP(Object arg0) {
188:                return messageFactory.getMessage("wsimport.help", arg0);
189:            }
190:
191:            /**
192:             * 
193:             * Usage: {0} [options] <WSDL_URI>
194:             * 
195:             * where [options] include:
196:             *   -b <path>                 specify jaxws/jaxb binding files or additional schemas
197:             *                             (Each <path> must have its own -b)
198:             *   -B<jaxbOption>            Pass this option to JAXB schema compiler
199:             *   -catalog <file>           specify catalog file to resolve external entity references
200:             *                             supports TR9401, XCatalog, and OASIS XML Catalog format.
201:             *   -d <directory>            specify where to place generated output files
202:             *   -extension                allow vendor extensions - functionality not specified
203:             *                             by the specification.  Use of extensions may
204:             *                             result in applications that are not portable or
205:             *                             may not interoperate with other implementations
206:             *   -help                     display help
207:             *   -httpproxy:<host>:<port>  specify a HTTP proxy server (port defaults to 8080)
208:             *   -keep                     keep generated files
209:             *   -p <pkg>                  specifies the target package
210:             *   -quiet                    suppress wsimport output
211:             *   -s <directory>            specify where to place generated source files
212:             *   -target <version>         generate code as per the given JAXWS specification version.
213:             *                             version 2.0 will generate compliant code for JAXWS 2.0 spec.
214:             *   -verbose                  output messages about what the compiler is doing
215:             *   -version                  print version information
216:             *   -wsdllocation <location>  @WebServiceClient.wsdlLocation value
217:             * 
218:             * 
219:             */
220:            public static String WSIMPORT_HELP(Object arg0) {
221:                return localizer.localize(localizableWSIMPORT_HELP(arg0));
222:            }
223:
224:            public static Localizable localizableWSCOMPILE_ERROR(Object arg0) {
225:                return messageFactory.getMessage("wscompile.error", arg0);
226:            }
227:
228:            /**
229:             * error: {0}
230:             * 
231:             */
232:            public static String WSCOMPILE_ERROR(Object arg0) {
233:                return localizer.localize(localizableWSCOMPILE_ERROR(arg0));
234:            }
235:
236:            public static Localizable localizableWSIMPORT_COMPILING_CODE() {
237:                return messageFactory.getMessage("wsimport.CompilingCode");
238:            }
239:
240:            /**
241:             * 
242:             * compiling code...
243:             * 
244:             * 
245:             */
246:            public static String WSIMPORT_COMPILING_CODE() {
247:                return localizer.localize(localizableWSIMPORT_COMPILING_CODE());
248:            }
249:
250:            public static Localizable localizableWSGEN_NO_WEBSERVICES_CLASS(
251:                    Object arg0) {
252:                return messageFactory.getMessage("wsgen.no.webservices.class",
253:                        arg0);
254:            }
255:
256:            /**
257:             * wsgen did not find any class with @WebService annotation. Please specify @WebService annotation on {0}.
258:             * 
259:             */
260:            public static String WSGEN_NO_WEBSERVICES_CLASS(Object arg0) {
261:                return localizer
262:                        .localize(localizableWSGEN_NO_WEBSERVICES_CLASS(arg0));
263:            }
264:
265:            public static Localizable localizableWSCOMPILE_NO_SUCH_DIRECTORY(
266:                    Object arg0) {
267:                return messageFactory.getMessage("wscompile.noSuchDirectory",
268:                        arg0);
269:            }
270:
271:            /**
272:             * directory not found: {0}
273:             * 
274:             */
275:            public static String WSCOMPILE_NO_SUCH_DIRECTORY(Object arg0) {
276:                return localizer
277:                        .localize(localizableWSCOMPILE_NO_SUCH_DIRECTORY(arg0));
278:            }
279:
280:            public static Localizable localizableWSCOMPILE_INFO(Object arg0) {
281:                return messageFactory.getMessage("wscompile.info", arg0);
282:            }
283:
284:            /**
285:             * info: {0}
286:             * 
287:             */
288:            public static String WSCOMPILE_INFO(Object arg0) {
289:                return localizer.localize(localizableWSCOMPILE_INFO(arg0));
290:            }
291:
292:            public static Localizable localizableWSIMPORT_WARNING_MESSAGE(
293:                    Object arg0) {
294:                return messageFactory.getMessage("wsimport.WarningMessage",
295:                        arg0);
296:            }
297:
298:            /**
299:             * [WARNING] {0}
300:             * 
301:             */
302:            public static String WSIMPORT_WARNING_MESSAGE(Object arg0) {
303:                return localizer
304:                        .localize(localizableWSIMPORT_WARNING_MESSAGE(arg0));
305:            }
306:
307:            public static Localizable localizableWSCOMPILE_INVALID_OPTION(
308:                    Object arg0) {
309:                return messageFactory.getMessage("wscompile.invalidOption",
310:                        arg0);
311:            }
312:
313:            /**
314:             * unrecognized parameter {0}
315:             * 
316:             */
317:            public static String WSCOMPILE_INVALID_OPTION(Object arg0) {
318:                return localizer
319:                        .localize(localizableWSCOMPILE_INVALID_OPTION(arg0));
320:            }
321:
322:            public static Localizable localizableWSIMPORT_ERROR_MESSAGE(
323:                    Object arg0) {
324:                return messageFactory.getMessage("wsimport.ErrorMessage", arg0);
325:            }
326:
327:            /**
328:             * [ERROR] {0}
329:             * 
330:             */
331:            public static String WSIMPORT_ERROR_MESSAGE(Object arg0) {
332:                return localizer
333:                        .localize(localizableWSIMPORT_ERROR_MESSAGE(arg0));
334:            }
335:
336:            public static Localizable localizableWSIMPORT_GENERATING_CODE() {
337:                return messageFactory.getMessage("wsimport.GeneratingCode");
338:            }
339:
340:            /**
341:             * generating code...
342:             * 
343:             * 
344:             */
345:            public static String WSIMPORT_GENERATING_CODE() {
346:                return localizer
347:                        .localize(localizableWSIMPORT_GENERATING_CODE());
348:            }
349:
350:            public static Localizable localizableWSGEN() {
351:                return messageFactory.getMessage("wsgen");
352:            }
353:
354:            /**
355:             * -wsdl:protocol XSoap1.2 -extenson {1}
356:             * 
357:             */
358:            public static String WSGEN() {
359:                return localizer.localize(localizableWSGEN());
360:            }
361:
362:            public static Localizable localizableWSIMPORT_NOT_A_FILE_NOR_URL(
363:                    Object arg0) {
364:                return messageFactory.getMessage("wsimport.NotAFileNorURL",
365:                        arg0);
366:            }
367:
368:            /**
369:             * "{0}" is neither a file name nor an URL
370:             * 
371:             */
372:            public static String WSIMPORT_NOT_A_FILE_NOR_URL(Object arg0) {
373:                return localizer
374:                        .localize(localizableWSIMPORT_NOT_A_FILE_NOR_URL(arg0));
375:            }
376:
377:            public static Localizable localizableWSCOMPILE_WARNING(Object arg0) {
378:                return messageFactory.getMessage("wscompile.warning", arg0);
379:            }
380:
381:            /**
382:             * warning: {0}
383:             * 
384:             */
385:            public static String WSCOMPILE_WARNING(Object arg0) {
386:                return localizer.localize(localizableWSCOMPILE_WARNING(arg0));
387:            }
388:
389:            public static Localizable localizableWRAPPER_TASK_NEED_ENDORSED(
390:                    Object arg0) {
391:                return messageFactory.getMessage("wrapperTask.needEndorsed",
392:                        arg0);
393:            }
394:
395:            /**
396:             * You are running on JDK6 which comes with JAX-WS 2.0 API, but this tool requires JAX-WS 2.1 API. Use the endorsed standards override mechanism (http://java.sun.com/javase/6/docs/technotes/guides/standards/), or set xendorsed="true" on <{0}>. 
397:             * 
398:             */
399:            public static String WRAPPER_TASK_NEED_ENDORSED(Object arg0) {
400:                return localizer
401:                        .localize(localizableWRAPPER_TASK_NEED_ENDORSED(arg0));
402:            }
403:
404:            public static Localizable localizableWSIMPORT_NO_SUCH_JAXB_OPTION(
405:                    Object arg0) {
406:                return messageFactory.getMessage("wsimport.noSuchJaxbOption",
407:                        arg0);
408:            }
409:
410:            /**
411:             * no such JAXB option: {0}
412:             * 
413:             */
414:            public static String WSIMPORT_NO_SUCH_JAXB_OPTION(Object arg0) {
415:                return localizer
416:                        .localize(localizableWSIMPORT_NO_SUCH_JAXB_OPTION(arg0));
417:            }
418:
419:            public static Localizable localizableWSGEN_COULD_NOT_CREATE_FILE(
420:                    Object arg0) {
421:                return messageFactory.getMessage("wsgen.could.not.create.file",
422:                        arg0);
423:            }
424:
425:            /**
426:             * "Could not create file: "{0}"
427:             * 
428:             */
429:            public static String WSGEN_COULD_NOT_CREATE_FILE(Object arg0) {
430:                return localizer
431:                        .localize(localizableWSGEN_COULD_NOT_CREATE_FILE(arg0));
432:            }
433:
434:            public static Localizable localizableWSGEN_WSDL_ARG_NO_GENWSDL(
435:                    Object arg0) {
436:                return messageFactory.getMessage("wsgen.wsdl.arg.no.genwsdl",
437:                        arg0);
438:            }
439:
440:            /**
441:             * The "{0}" option can only be in conjunction with the "-wsdl" option. 
442:             * 
443:             */
444:            public static String WSGEN_WSDL_ARG_NO_GENWSDL(Object arg0) {
445:                return localizer
446:                        .localize(localizableWSGEN_WSDL_ARG_NO_GENWSDL(arg0));
447:            }
448:
449:            public static Localizable localizableWSGEN_HELP(Object arg0) {
450:                return messageFactory.getMessage("wsgen.help", arg0);
451:            }
452:
453:            /**
454:             * 
455:             * Usage: {0} [options] <SEI>
456:             * 
457:             * where [options] include:
458:             *   -classpath <path>          specify where to find input class files
459:             *   -cp <path>                 same as -classpath <path>
460:             *   -d <directory>             specify where to place generated output files
461:             *   -extension                 allow vendor extensions - functionality not specified
462:             *                              by the specification.  Use of extensions may
463:             *                              result in applications that are not portable or
464:             *                              may not interoperate with other implementations
465:             *   -help                      display help
466:             *   -keep                      keep generated files
467:             *   -r <directory>             resource destination directory, specify where to
468:             *                              place resouce files such as WSDLs
469:             *   -s <directory>             specify where to place generated source files
470:             *   -verbose                   output messages about what the compiler is doing
471:             *   -version                   print version information
472:             *   -wsdl[:protocol]           generate a WSDL file.  The protocol is optional.
473:             *                              Valid protocols are soap1.1 and Xsoap1.2, the default
474:             *                              is soap1.1.  Xsoap1.2 is not standard and can only be
475:             *                              used in conjunction with the -extension option
476:             *   -servicename <name>        specify the Service name to use in the generated WSDL
477:             *                              Used in conjunction with the -wsdl option.
478:             *   -portname <name>           specify the Port name to use in the generated WSDL
479:             *                              Used in conjunction with the -wsdl option.
480:             * 
481:             */
482:            public static String WSGEN_HELP(Object arg0) {
483:                return localizer.localize(localizableWSGEN_HELP(arg0));
484:            }
485:
486:            public static Localizable localizableWSIMPORT_INFO_MESSAGE(
487:                    Object arg0) {
488:                return messageFactory.getMessage("wsimport.InfoMessage", arg0);
489:            }
490:
491:            /**
492:             * [INFO] {0}
493:             * 
494:             */
495:            public static String WSIMPORT_INFO_MESSAGE(Object arg0) {
496:                return localizer
497:                        .localize(localizableWSIMPORT_INFO_MESSAGE(arg0));
498:            }
499:
500:            public static Localizable localizableWSGEN_SOAP_12_WITHOUT_EXTENSION() {
501:                return messageFactory
502:                        .getMessage("wsgen.soap12.without.extension");
503:            }
504:
505:            /**
506:             * The optional protocol "Xsoap1.2" must be used in conjunction with the "-extension" option.
507:             * 
508:             */
509:            public static String WSGEN_SOAP_12_WITHOUT_EXTENSION() {
510:                return localizer
511:                        .localize(localizableWSGEN_SOAP_12_WITHOUT_EXTENSION());
512:            }
513:
514:            public static Localizable localizableWSCOMPILE_COMPILATION_FAILED() {
515:                return messageFactory.getMessage("wscompile.compilationFailed");
516:            }
517:
518:            /**
519:             * compilation failed, errors should have been reported
520:             * 
521:             */
522:            public static String WSCOMPILE_COMPILATION_FAILED() {
523:                return localizer
524:                        .localize(localizableWSCOMPILE_COMPILATION_FAILED());
525:            }
526:
527:            public static Localizable localizableWSCOMPILE_MISSING_OPTION_ARGUMENT(
528:                    Object arg0) {
529:                return messageFactory.getMessage(
530:                        "wscompile.missingOptionArgument", arg0);
531:            }
532:
533:            /**
534:             * option "{0}" requires an argument
535:             * 
536:             */
537:            public static String WSCOMPILE_MISSING_OPTION_ARGUMENT(Object arg0) {
538:                return localizer
539:                        .localize(localizableWSCOMPILE_MISSING_OPTION_ARGUMENT(arg0));
540:            }
541:
542:            public static Localizable localizableWSGEN_CANNOT_GEN_WSDL_FOR_NON_SOAP_BINDING(
543:                    Object arg0, Object arg1) {
544:                return messageFactory.getMessage(
545:                        "wsgen.cannot.gen.wsdl.for.non.soap.binding", arg0,
546:                        arg1);
547:            }
548:
549:            /**
550:             * wsgen can not generate WSDL for non-SOAP binding: {0} on Class {1}
551:             * 
552:             */
553:            public static String WSGEN_CANNOT_GEN_WSDL_FOR_NON_SOAP_BINDING(
554:                    Object arg0, Object arg1) {
555:                return localizer
556:                        .localize(localizableWSGEN_CANNOT_GEN_WSDL_FOR_NON_SOAP_BINDING(
557:                                arg0, arg1));
558:            }
559:
560:            public static Localizable localizableWSCOMPILE_DUPLICATE_OPTION(
561:                    Object arg0) {
562:                return messageFactory.getMessage("wscompile.duplicateOption",
563:                        arg0);
564:            }
565:
566:            /**
567:             * duplicate option: {0}
568:             * 
569:             */
570:            public static String WSCOMPILE_DUPLICATE_OPTION(Object arg0) {
571:                return localizer
572:                        .localize(localizableWSCOMPILE_DUPLICATE_OPTION(arg0));
573:            }
574:
575:            public static Localizable localizableWSIMPORT_FAILED_TO_PARSE(
576:                    Object arg0, Object arg1) {
577:                return messageFactory.getMessage("wsimport.FailedToParse",
578:                        arg0, arg1);
579:            }
580:
581:            /**
582:             * Failed to parse "{0}": {1}
583:             * 
584:             */
585:            public static String WSIMPORT_FAILED_TO_PARSE(Object arg0,
586:                    Object arg1) {
587:                return localizer.localize(localizableWSIMPORT_FAILED_TO_PARSE(
588:                        arg0, arg1));
589:            }
590:
591:            public static Localizable localizableWSIMPORT_NO_WSDL(Object arg0) {
592:                return messageFactory.getMessage("wsimport.no.wsdl", arg0);
593:            }
594:
595:            /**
596:             * 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>.
597:             * 
598:             */
599:            public static String WSIMPORT_NO_WSDL(Object arg0) {
600:                return localizer.localize(localizableWSIMPORT_NO_WSDL(arg0));
601:            }
602:
603:            public static Localizable localizableWSGEN_USAGE(Object arg0) {
604:                return messageFactory.getMessage("wsgen.usage", arg0);
605:            }
606:
607:            /**
608:             * Usage: {0} [options] <SEI>
609:             * 
610:             * Use "wsgen -help" for a detailed description of options.
611:             * 
612:             */
613:            public static String WSGEN_USAGE(Object arg0) {
614:                return localizer.localize(localizableWSGEN_USAGE(arg0));
615:            }
616:
617:            public static Localizable localizableWSGEN_SERVICENAME_MISSING_LOCALNAME(
618:                    Object arg0) {
619:                return messageFactory.getMessage(
620:                        "wsgen.servicename.missing.localname", arg0);
621:            }
622:
623:            /**
624:             * The service name "{0}" is missing a localname.
625:             * 
626:             */
627:            public static String WSGEN_SERVICENAME_MISSING_LOCALNAME(Object arg0) {
628:                return localizer
629:                        .localize(localizableWSGEN_SERVICENAME_MISSING_LOCALNAME(arg0));
630:            }
631:
632:            public static Localizable localizableWSGEN_SERVICENAME_MISSING_NAMESPACE(
633:                    Object arg0) {
634:                return messageFactory.getMessage(
635:                        "wsgen.servicename.missing.namespace", arg0);
636:            }
637:
638:            /**
639:             * The service name "{0}" is missing a namespace.
640:             * 
641:             */
642:            public static String WSGEN_SERVICENAME_MISSING_NAMESPACE(Object arg0) {
643:                return localizer
644:                        .localize(localizableWSGEN_SERVICENAME_MISSING_NAMESPACE(arg0));
645:            }
646:
647:            public static Localizable localizableWSGEN_INVALID_TRANSPORT(
648:                    Object arg0, Object arg1) {
649:                return messageFactory.getMessage("wsgen.invalid.transport",
650:                        arg0, arg1);
651:            }
652:
653:            /**
654:             * "{0}" is not a supported transport.  Supported transport include: {1}.
655:             * 
656:             */
657:            public static String WSGEN_INVALID_TRANSPORT(Object arg0,
658:                    Object arg1) {
659:                return localizer.localize(localizableWSGEN_INVALID_TRANSPORT(
660:                        arg0, arg1));
661:            }
662:
663:            public static Localizable localizableWSGEN_CANNOT_GEN_WSDL_FOR_SOAP_12_BINDING(
664:                    Object arg0, Object arg1) {
665:                return messageFactory.getMessage(
666:                        "wsgen.cannot.gen.wsdl.for.soap12.binding", arg0, arg1);
667:            }
668:
669:            /**
670:             * wsgen can not generate WSDL for SOAP 1.2 binding: {0} on class: {1}.
671:             * 
672:             * 
673:             */
674:            public static String WSGEN_CANNOT_GEN_WSDL_FOR_SOAP_12_BINDING(
675:                    Object arg0, Object arg1) {
676:                return localizer
677:                        .localize(localizableWSGEN_CANNOT_GEN_WSDL_FOR_SOAP_12_BINDING(
678:                                arg0, arg1));
679:            }
680:
681:            public static Localizable localizableWSIMPORT_ILLEGAL_TARGET_VERSION(
682:                    Object arg0) {
683:                return messageFactory.getMessage(
684:                        "wsimport.ILLEGAL_TARGET_VERSION", arg0);
685:            }
686:
687:            /**
688:             * "{0}" is not a valid target version. "2.0" and "2.1" are supported.
689:             * 
690:             */
691:            public static String WSIMPORT_ILLEGAL_TARGET_VERSION(Object arg0) {
692:                return localizer
693:                        .localize(localizableWSIMPORT_ILLEGAL_TARGET_VERSION(arg0));
694:            }
695:
696:            public static Localizable localizableWSGEN_PORTNAME_MISSING_LOCALNAME(
697:                    Object arg0) {
698:                return messageFactory.getMessage(
699:                        "wsgen.portname.missing.localname", arg0);
700:            }
701:
702:            /**
703:             * The port name "{0}" is missing a localname.
704:             * 
705:             */
706:            public static String WSGEN_PORTNAME_MISSING_LOCALNAME(Object arg0) {
707:                return localizer
708:                        .localize(localizableWSGEN_PORTNAME_MISSING_LOCALNAME(arg0));
709:            }
710:
711:            public static Localizable localizableWSGEN_PORTNAME_MISSING_NAMESPACE(
712:                    Object arg0) {
713:                return messageFactory.getMessage(
714:                        "wsgen.portname.missing.namespace", arg0);
715:            }
716:
717:            /**
718:             * The port name "{0}" is missing a namespace.
719:             * 
720:             */
721:            public static String WSGEN_PORTNAME_MISSING_NAMESPACE(Object arg0) {
722:                return localizer
723:                        .localize(localizableWSGEN_PORTNAME_MISSING_NAMESPACE(arg0));
724:            }
725:
726:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.