src/share/jaxws_classes/com/sun/tools/internal/ws/spi/WSToolsObjectFactory.java

changeset 368
0989ad8c0860
parent 286
f50545b5e2f1
child 637
9c07ef4934dd
equal deleted inserted replaced
366:8c0b6bccfe47 368:0989ad8c0860
1 /* 1 /*
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
65 * Invokes wsimport on the wsdl URL argument, and generates the necessary 65 * Invokes wsimport on the wsdl URL argument, and generates the necessary
66 * portable artifacts like SEI, Service, Bean classes etc. 66 * portable artifacts like SEI, Service, Bean classes etc.
67 * 67 *
68 * @return true if there is no error, otherwise false 68 * @return true if there is no error, otherwise false
69 * 69 *
70 * @see {@link #wsimport(OutputStream, Container, String[])} 70 * @see #wsimport(OutputStream, Container, String[])
71 */ 71 */
72 public boolean wsimport(OutputStream logStream, String[] args) { 72 public boolean wsimport(OutputStream logStream, String[] args) {
73 return wsimport(logStream, Container.NONE, args); 73 return wsimport(logStream, Container.NONE, args);
74 } 74 }
75 75
89 /** 89 /**
90 * Invokes wsgen on the endpoint implementation, and generates the necessary 90 * Invokes wsgen on the endpoint implementation, and generates the necessary
91 * artifacts like wrapper, exception bean classes etc. 91 * artifacts like wrapper, exception bean classes etc.
92 * 92 *
93 * @return true if there is no error, otherwise false 93 * @return true if there is no error, otherwise false
94 * @see {@link #wsgen(OutputStream, Container, String[])} 94 * @see #wsgen(OutputStream, Container, String[])
95 */ 95 */
96 public boolean wsgen(OutputStream logStream, String[] args) { 96 public boolean wsgen(OutputStream logStream, String[] args) {
97 return wsgen(logStream, Container.NONE, args); 97 return wsgen(logStream, Container.NONE, args);
98 } 98 }
99 99

mercurial