Package com.sun.xml.ws.api.model.wsdl
Interface WSDLPortType
-
- All Superinterfaces:
WSDLExtensible,WSDLObject
- All Known Subinterfaces:
EditableWSDLPortType
- All Known Implementing Classes:
WSDLPortTypeImpl
public interface WSDLPortType extends WSDLObject, WSDLExtensible
Abstraction of wsdl:portType.- Author:
- Vivek Pandey
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WSDLOperationget(String operationName)Gets theWSDLOperationfor a given operation nameQNamegetName()Gets the name of the wsdl:portType@name attribute value as local name and wsdl:definitions@targetNamespace as the namespace uri.Iterable<? extends WSDLOperation>getOperations()GetsIterable7lt;WSDLOperation>-
Methods inherited from interface com.sun.xml.ws.api.model.wsdl.WSDLExtensible
addExtension, addNotUnderstoodExtension, areRequiredExtensionsUnderstood, getExtension, getExtensions, getExtensions, getNotUnderstoodExtensions
-
Methods inherited from interface com.sun.xml.ws.api.model.wsdl.WSDLObject
getLocation
-
-
-
-
Method Detail
-
getName
QName getName()
Gets the name of the wsdl:portType@name attribute value as local name and wsdl:definitions@targetNamespace as the namespace uri.
-
get
WSDLOperation get(String operationName)
Gets theWSDLOperationfor a given operation name- Parameters:
operationName- non-null operationName- Returns:
- null if a
WSDLOperationis not found
-
getOperations
Iterable<? extends WSDLOperation> getOperations()
GetsIterable7lt;WSDLOperation>
-
-