Searched refs:wsdlLocation (Results 1 - 25 of 26) sorted by relevance

12

/openjdk9/jaxws/src/java.xml.ws/share/classes/com/oracle/xmlns/internal/webservices/jaxws_databinding/
H A DXmlWebServiceClient.java51 * <attribute name="wsdlLocation" type="{http://www.w3.org/2001/XMLSchema}string" />
66 @XmlAttribute(name = "wsdlLocation")
67 protected String wsdlLocation; field in class:XmlWebServiceClient
118 * Gets the value of the wsdlLocation property.
126 return wsdlLocation;
130 * Sets the value of the wsdlLocation property.
138 this.wsdlLocation = value;
152 public String wsdlLocation() { method in class:XmlWebServiceClient
153 return nullSafe(wsdlLocation);
H A DXmlWebServiceProvider.java52 * <attribute name="wsdlLocation" type="{http://www.w3.org/2001/XMLSchema}string" />
69 @XmlAttribute(name = "wsdlLocation")
70 protected String wsdlLocation; field in class:XmlWebServiceProvider
145 * Gets the value of the wsdlLocation property.
153 return wsdlLocation;
157 * Sets the value of the wsdlLocation property.
165 this.wsdlLocation = value;
169 public String wsdlLocation() { method in class:XmlWebServiceProvider
170 return nullSafe(wsdlLocation);
H A DXmlWebService.java78 protected String wsdlLocation; field in class:XmlWebService
221 * Gets the value of the wsdlLocation property.
229 if (wsdlLocation == null) {
232 return wsdlLocation;
237 * Sets the value of the wsdlLocation property.
245 this.wsdlLocation = value;
269 public String wsdlLocation() { method in class:XmlWebService
270 return nullSafe(wsdlLocation);
H A DXmlWebServiceRef.java55 * <attribute name="wsdlLocation" type="{http://www.w3.org/2001/XMLSchema}string" />
74 @XmlAttribute(name = "wsdlLocation")
75 protected String wsdlLocation; field in class:XmlWebServiceRef
176 * Gets the value of the wsdlLocation property.
184 return wsdlLocation;
188 * Sets the value of the wsdlLocation property.
196 this.wsdlLocation = value;
235 public String wsdlLocation() { method in class:XmlWebServiceRef
236 return nullSafe(wsdlLocation);
/openjdk9/jaxws/src/java.xml.ws/share/classes/javax/jws/
H A DWebService.java40 String wsdlLocation() default "";
/openjdk9/jaxws/src/java.xml.ws/share/classes/javax/xml/ws/
H A DWebServiceClient.java68 String wsdlLocation() default "";
H A DWebServiceProvider.java48 String wsdlLocation() default "";
H A DWebServiceRef.java153 String wsdlLocation() default "";
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wsdl/document/jaxws/
H A DJAXWSBinding.java178 * @return Returns the wsdlLocation.
181 return wsdlLocation;
185 * @param wsdlLocation The wsdlLocation to set.
187 public void setWsdlLocation(String wsdlLocation) { argument
188 this.wsdlLocation = wsdlLocation;
295 private String wsdlLocation; field in class:JAXWSBinding
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/addressing/
H A DEndpointReferenceUtil.java249 String wsdlLocation = child.getAttributeNS(W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_NAMESPACE,
329 if (wsdlDefinitions == null && wsdlLocation != null && !wsdlLocation.equals("")) {
330 wsdlLocation = wsdlLocation.trim();
331 String wsdlTns = wsdlLocation.substring(0, wsdlLocation.indexOf(' '));
332 wsdlLocation = wsdlLocation.substring(wsdlLocation
[all...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/server/
H A DSDDocumentSource.java93 public static SDDocumentSource create(final Class<?> implClass, final String wsdlLocation) { argument
95 URL url = cl.getResource(wsdlLocation);
99 return create(wsdlLocation, implClass);
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/client/
H A DSCAnnotations.java59 JAXWSUtils.getFileOrURL(wsc.wsdlLocation());
H A DWSServiceDelegate.java291 //if wsdl is null, try and get it from the WebServiceClient.wsdlLocation
299 String wsdlLocation = wsClient.wsdlLocation();
300 wsdlLocation = JAXWSUtils.absolutize(JAXWSUtils.getFileOrURLName(wsdlLocation));
301 wsdl = new StreamSource(wsdlLocation);
737 if (ws == null || ws.wsdlLocation().equals(""))
739 String wsdlLocation = ws.wsdlLocation();
740 wsdlLocation
[all...]
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wsdl/parser/
H A DInternalizer.java97 if (a.getLocalName().equals("wsdlLocation")) {
111 // look for @wsdlLocation
113 String wsdlLocation;
114 if (bindings.getAttributeNode("wsdlLocation") != null) {
115 wsdlLocation = bindings.getAttribute("wsdlLocation");
121 wsdlLocation = new URL(new URL(forest.getSystemId(bindings.getOwnerDocument())),
122 wsdlLocation).toExternalForm();
124 wsdlLocation = JAXWSUtils.absolutize(JAXWSUtils.getFileOrURLName(wsdlLocation));
[all...]
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/generator/
H A DServiceGenerator.java123 } else if (wsdlLocation.startsWith("http://") || wsdlLocation.startsWith("https://") || wsdlLocation.startsWith("file:/")) {
125 } else if (wsdlLocation.startsWith("META-INF/")) {
159 // for e.g: public ExampleService(URL wsdlLocation)
162 constructor3.param(URL.class, "wsdlLocation");
163 String constructor3Str = String.format("super(wsdlLocation, %s);", serviceName);
168 // for e.g: public ExampleService(URL wsdlLocation, WebServiceFeature ... features)
171 constructor4.param(URL.class, "wsdlLocation");
173 String constructor4Str = String.format("super(wsdlLocation,
[all...]
H A DGeneratorBase.java74 protected String wsdlLocation; field in class:GeneratorBase
86 this.wsdlLocation = options.wsdlLocation;
H A DJwsImplGenerator.java336 webServiceAnn.param("wsdlLocation", wsdlLocation);
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/transport/http/server/
H A DEndpointImpl.java371 // Takes care of @WebService, @WebServiceProvider's wsdlLocation
373 String wsdlLocation = EndpointFactory.getWsdlLocation(implClass, metadataReader);
374 if (wsdlLocation != null) {
375 return SDDocumentSource.create(implClass, wsdlLocation);
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/
H A DWsimportOptions.java73 * -wsdlLocation
75 public String wsdlLocation; field in class:WsimportOptions
299 wsdlLocation = requireArgument("-wsdllocation", args, ++i);
426 if(wsdlLocation !=null && clientjar != null) {
429 if(wsdlLocation == null){
430 wsdlLocation = wsdls.get(0).getSystemId();
H A DWsimportTool.java437 options.wsdlLocation = new WSDLFetcher(options,listener).fetchWsdls(forest);
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/model/
H A DAbstractSEIModelImpl.java404 return wsdlLocation;
408 wsdlLocation = location;
507 private String wsdlLocation; field in class:AbstractSEIModelImpl
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/wsdl/writer/
H A DWSDLGenerator.java181 private String wsdlLocation; field in class:WSDLGenerator
272 wsdlLocation = result.getSystemId();
287 if (portWSDLID.equals(wsdlLocation)) {
400 String schemaLoc = relativize(portWSDLID, wsdlLocation);
408 String schemaLoc = relativize(portWSDLID, wsdlLocation);
1072 schemaLoc = relativize(result.getSystemId(), wsdlLocation);
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/addressing/
H A DWSEndpointReference.java1163 String wsdlLoc = xsr.getAttributeValue("http://www.w3.org/ns/wsdl-instance","wsdlLocation");
1201 String wsdlLocation = wsdliLocation.trim();
1202 wsdlLocation = wsdlLocation.substring(wsdliLocation.lastIndexOf(" "));
1203 wsdlSource = new StreamSource(wsdlLocation);
/openjdk9/langtools/test/tools/javac/T5090006/
H A Dbroken.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/framework/ junit/framework/Assert.class Assert. ...
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/server/
H A DEndpointFactory.java608 * wsdlLocation element.
613 * @return wsdl if there is wsdlLocation, else null
621 * wsdlLocation element.
626 * @return wsdl if there is wsdlLocation, else null
636 return nullIfEmpty(ws.wsdlLocation());
640 return nullIfEmpty(wsProvider.wsdlLocation());

Completed in 132 milliseconds

12