Interface EditableWSDLPortType
-
- All Superinterfaces:
WSDLExtensible,WSDLObject,WSDLPortType
- All Known Implementing Classes:
WSDLPortTypeImpl
public interface EditableWSDLPortType extends WSDLPortType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfreeze()Freezes WSDL model to prevent further modificationEditableWSDLOperationget(String operationName)Gets theWSDLOperationfor a given operation nameIterable<? extends EditableWSDLOperation>getOperations()GetsIterable<WSDLOperation>voidput(String opName, EditableWSDLOperation ptOp)Associate WSDL operation with operation name-
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
-
Methods inherited from interface com.sun.xml.ws.api.model.wsdl.WSDLPortType
getName
-
-
-
-
Method Detail
-
get
EditableWSDLOperation get(String operationName)
Description copied from interface:WSDLPortTypeGets theWSDLOperationfor a given operation name- Specified by:
getin interfaceWSDLPortType- Parameters:
operationName- non-null operationName- Returns:
- null if a
WSDLOperationis not found
-
getOperations
Iterable<? extends EditableWSDLOperation> getOperations()
Description copied from interface:WSDLPortTypeGetsIterable<WSDLOperation>- Specified by:
getOperationsin interfaceWSDLPortType
-
put
void put(String opName, EditableWSDLOperation ptOp)
Associate WSDL operation with operation name- Parameters:
opName- Operation nameptOp- Operation
-
freeze
void freeze()
Freezes WSDL model to prevent further modification
-
-