com.sun.xml.ws.model.wsdl
Class WSDLFaultImpl

java.lang.Object
  extended by com.sun.xml.ws.model.wsdl.WSDLFaultImpl
All Implemented Interfaces:
EditableWSDLFault, WSDLExtensible, WSDLFault, WSDLObject

public final class WSDLFaultImpl
extends Object
implements EditableWSDLFault

Author:
Vivek Pandey

Nested Class Summary
protected static class com.sun.xml.ws.model.wsdl.AbstractExtensibleImpl.UnknownWSDLExtension
           
 
Field Summary
protected  Set<WSDLExtension> extensions
           
protected  List<com.sun.xml.ws.model.wsdl.AbstractExtensibleImpl.UnknownWSDLExtension> notUnderstoodExtensions
           
 
Constructor Summary
WSDLFaultImpl(XMLStreamReader xsr, String name, QName messageName, EditableWSDLOperation operation)
           
 
Method Summary
 void addExtension(WSDLExtension ex)
          Adds a new WSDLExtension to this object.
 void addNotUnderstoodExtension(QName extnEl, Locator locator)
          This can be used if a WSDL extension element that has wsdl:required=true is not understood
 boolean areRequiredExtensionsUnderstood()
          This method should be called after freezing the WSDLModel
 void freeze(EditableWSDLModel root)
          Freezes WSDL model to prevent further modification
 String getAction()
          Gives the Action Message Addressing Property value for WSDLFault message.
<T extends WSDLExtension>
T
getExtension(Class<T> type)
          Gets the extension that is assignable to the given type.
 Iterable<WSDLExtension> getExtensions()
          Gets all the WSDLExtensions added through WSDLExtensible.addExtension(WSDLExtension).
<T extends WSDLExtension>
Iterable<T>
getExtensions(Class<T> type)
          Gets all the extensions that is assignable to the given type.
 Locator getLocation()
          Gets the source location information in the parsed WSDL.
 EditableWSDLMessage getMessage()
          Gives the WSDLMessage corresponding to wsdl:fault@message This method should not be called before the entire WSDLModel is built.
 String getName()
          Gives wsdl:fault@name value
 List<? extends com.sun.xml.ws.model.wsdl.AbstractExtensibleImpl.UnknownWSDLExtension> getNotUnderstoodExtensions()
          Lists extensions marked as not understood
 EditableWSDLOperation getOperation()
          Gives the owning WSDLOperation
 QName getQName()
          Gives qualified name of the wsdl:fault 'name' attribute value.
 boolean isDefaultAction()
          True if this is the default action
 void setAction(String action)
          Sets action
 void setDefaultAction(boolean defaultAction)
          Set to true if this is the default action
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
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
 

Field Detail

extensions

protected final Set<WSDLExtension> extensions

notUnderstoodExtensions

protected List<com.sun.xml.ws.model.wsdl.AbstractExtensibleImpl.UnknownWSDLExtension> notUnderstoodExtensions
Constructor Detail

WSDLFaultImpl

public WSDLFaultImpl(XMLStreamReader xsr,
                     String name,
                     QName messageName,
                     EditableWSDLOperation operation)
Method Detail

getName

public String getName()
Description copied from interface: WSDLFault
Gives wsdl:fault@name value

Specified by:
getName in interface WSDLFault

getMessage

public EditableWSDLMessage getMessage()
Description copied from interface: WSDLFault
Gives the WSDLMessage corresponding to wsdl:fault@message This method should not be called before the entire WSDLModel is built. Basically after the WSDLModel is built all the references are resolve in a post processing phase. IOW, the WSDL extensions should not call this method.

Specified by:
getMessage in interface EditableWSDLFault
Specified by:
getMessage in interface WSDLFault
Returns:
Always returns null when called from inside WSDL extensions.

getOperation

@NotNull
public EditableWSDLOperation getOperation()
Description copied from interface: WSDLFault
Gives the owning WSDLOperation

Specified by:
getOperation in interface EditableWSDLFault
Specified by:
getOperation in interface WSDLFault

getQName

@NotNull
public QName getQName()
Description copied from interface: WSDLFault
Gives qualified name of the wsdl:fault 'name' attribute value.

The namespace uri is determined from the enclosing wsdl:operation.

Specified by:
getQName in interface WSDLFault

getAction

@NotNull
public String getAction()
Description copied from interface: WSDLFault
Gives the Action Message Addressing Property value for WSDLFault message.

This method provides the correct value irrespective of whether the Action is explicitly specified in the WSDL or implicitly derived using the rules defined in WS-Addressing.

Specified by:
getAction in interface WSDLFault
Returns:
Action

setAction

public void setAction(String action)
Description copied from interface: EditableWSDLFault
Sets action

Specified by:
setAction in interface EditableWSDLFault
Parameters:
action - Action

isDefaultAction

public boolean isDefaultAction()
Description copied from interface: WSDLFault
True if this is the default action

Specified by:
isDefaultAction in interface WSDLFault
Returns:

setDefaultAction

public void setDefaultAction(boolean defaultAction)
Description copied from interface: EditableWSDLFault
Set to true if this is the default action

Specified by:
setDefaultAction in interface EditableWSDLFault
Parameters:
defaultAction - True, if default action

freeze

public void freeze(EditableWSDLModel root)
Description copied from interface: EditableWSDLFault
Freezes WSDL model to prevent further modification

Specified by:
freeze in interface EditableWSDLFault
Parameters:
root - WSDL Model

getExtensions

public final Iterable<WSDLExtension> getExtensions()
Description copied from interface: WSDLExtensible
Gets all the WSDLExtensions added through WSDLExtensible.addExtension(WSDLExtension).

Specified by:
getExtensions in interface WSDLExtensible
Returns:
never null.

getExtensions

public final <T extends WSDLExtension> Iterable<T> getExtensions(Class<T> type)
Description copied from interface: WSDLExtensible
Gets all the extensions that is assignable to the given type.

This allows clients to find specific extensions in a type-safe and convenient way.

Specified by:
getExtensions in interface WSDLExtensible
Parameters:
type - The type of the extension to obtain. Must not be null.
Returns:
Can be an empty fromjava.collection but never null.

getExtension

public <T extends WSDLExtension> T getExtension(Class<T> type)
Description copied from interface: WSDLExtensible
Gets the extension that is assignable to the given type.

This is just a convenient version that does

 Iterator itr = getExtensions(type);
 if(itr.hasNext())  return itr.next();
 else               return null;
 

Specified by:
getExtension in interface WSDLExtensible
Returns:
null if the extension was not found.

addExtension

public void addExtension(WSDLExtension ex)
Description copied from interface: WSDLExtensible
Adds a new WSDLExtension to this object.

Specified by:
addExtension in interface WSDLExtensible
Parameters:
ex - must not be null.

getNotUnderstoodExtensions

public List<? extends com.sun.xml.ws.model.wsdl.AbstractExtensibleImpl.UnknownWSDLExtension> getNotUnderstoodExtensions()
Description copied from interface: WSDLExtensible
Lists extensions marked as not understood

Specified by:
getNotUnderstoodExtensions in interface WSDLExtensible
Returns:
List of not understood extensions

addNotUnderstoodExtension

public void addNotUnderstoodExtension(QName extnEl,
                                      Locator locator)
This can be used if a WSDL extension element that has wsdl:required=true is not understood

Specified by:
addNotUnderstoodExtension in interface WSDLExtensible
Parameters:
extnEl -
locator -

areRequiredExtensionsUnderstood

public boolean areRequiredExtensionsUnderstood()
This method should be called after freezing the WSDLModel

Specified by:
areRequiredExtensionsUnderstood in interface WSDLExtensible
Returns:
true if all wsdl required extensions on Port and Binding are understood

getLocation

@NotNull
public final Locator getLocation()
Description copied from interface: WSDLObject
Gets the source location information in the parsed WSDL. This is useful when producing error messages.

Specified by:
getLocation in interface WSDLObject


Copyright © 2005-2015 Oracle Corporation. All Rights Reserved.