Interface EditableWSDLBoundFault
-
- All Superinterfaces:
WSDLBoundFault,WSDLExtensible,WSDLObject
- All Known Implementing Classes:
WSDLBoundFaultImpl
public interface EditableWSDLBoundFault extends WSDLBoundFault
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfreeze(EditableWSDLBoundOperation operation)Freezes WSDL model to prevent further modificationEditableWSDLBoundOperationgetBoundOperation()Gives the ownerWSDLBoundOperationEditableWSDLFaultgetFault()Gives the associated abstract fault from wsdl:portType/wsdl:operation/wsdl:fault.-
Methods inherited from interface com.sun.xml.ws.api.model.wsdl.WSDLBoundFault
getName, getQName
-
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
-
getFault
@Nullable EditableWSDLFault getFault()
Description copied from interface:WSDLBoundFaultGives the associated abstract fault from wsdl:portType/wsdl:operation/wsdl:fault. It is only available after the WSDL parsing is complete and the entire model is frozen.
Maybe null if a binding fault has no corresponding fault in abstract wsdl:portType/wsdl:operation- Specified by:
getFaultin interfaceWSDLBoundFault
-
getBoundOperation
@NotNull EditableWSDLBoundOperation getBoundOperation()
Description copied from interface:WSDLBoundFaultGives the ownerWSDLBoundOperation- Specified by:
getBoundOperationin interfaceWSDLBoundFault
-
freeze
void freeze(EditableWSDLBoundOperation operation)
Freezes WSDL model to prevent further modification- Parameters:
operation- Operation
-
-