org.systinet.wasp.dd
Interface FaultSerialization

All Superinterfaces:
ConfigurablePart, DeploymentPart, DocumentablePart, ExtensiblePart, NamedPart, OrderedPart

public interface FaultSerialization
extends NamedPart, ConfigurablePart, ExtensiblePart, OrderedPart, DocumentablePart

This interface represents a fault serialization deployment part.

Since:
4.0
Component:
Core

Field Summary
 
Fields inherited from interface org.systinet.wasp.dd.OrderedPart
ALL_PARTS
 
Method Summary
 java.lang.String getDeserializerClass()
          Returns the implementation class of the deserializer.
 java.lang.String getFaultActor()
          Returns the matched SOAP fault actor.
 QName getFaultCode()
          Returns the matched SOAP fault code.
 QName getFaultDetail()
          Returns the matched SOAP fault detail.
 java.lang.String getSerializedExceptionClass()
          Returns the name of the serialized exception.
 java.lang.String getSerializerClass()
          Returns the implementation class of the serializer.
 void setDeserializerClass(java.lang.String implClass)
          Sets the implementation class of the deserializer.
 void setFaultActor(java.lang.String faultActor)
          Sets the matched SOAP fault actor.
 void setFaultCode(QName faultCode)
          Sets the matched SOAP fault code
 void setFaultDetail(QName faultDetail)
          Sets the matched SOAP fault detail.
 void setSerializedExceptionClass(java.lang.String serializedClass)
          Sets the name of the serialized exception.
 void setSerializerClass(java.lang.String implClass)
          Sets the implementation class of the serializer.
 
Methods inherited from interface org.systinet.wasp.dd.NamedPart
getName, setName
 
Methods inherited from interface org.systinet.wasp.dd.DeploymentPart
getDeploymentDescriptor
 
Methods inherited from interface org.systinet.wasp.dd.ConfigurablePart
getConfiguration
 
Methods inherited from interface org.systinet.wasp.dd.ExtensiblePart
addElement, getElements
 
Methods inherited from interface org.systinet.wasp.dd.OrderedPart
getFollowingParts, getPrecedingParts, setFollowingParts, setPrecedingParts
 
Methods inherited from interface org.systinet.wasp.dd.DocumentablePart
getDocumentation, setDocumentation
 

Method Detail

getSerializerClass

public java.lang.String getSerializerClass()
Returns the implementation class of the serializer.

Returns:
the implementation class of the serializer

setSerializerClass

public void setSerializerClass(java.lang.String implClass)
Sets the implementation class of the serializer. No checks are performed if the implementation class exists.

Parameters:
implClass - the implementation class

getDeserializerClass

public java.lang.String getDeserializerClass()
Returns the implementation class of the deserializer.

Returns:
the implementation class of the deserializer

setDeserializerClass

public void setDeserializerClass(java.lang.String implClass)
Sets the implementation class of the deserializer. No checks are performed if the implementation class exists.

Parameters:
implClass - the implementation class

getSerializedExceptionClass

public java.lang.String getSerializedExceptionClass()
Returns the name of the serialized exception.

Returns:
the classname of the serialized exception

setSerializedExceptionClass

public void setSerializedExceptionClass(java.lang.String serializedClass)
Sets the name of the serialized exception.

Parameters:
serializedClass - the classname of the serialized exception

getFaultCode

public QName getFaultCode()
Returns the matched SOAP fault code.

Returns:
the matched SOAP fault code

setFaultCode

public void setFaultCode(QName faultCode)
Sets the matched SOAP fault code

Parameters:
faultCode - the matched SOAP fault code

getFaultActor

public java.lang.String getFaultActor()
Returns the matched SOAP fault actor.

Returns:
matched SOAP fault actor

setFaultActor

public void setFaultActor(java.lang.String faultActor)
Sets the matched SOAP fault actor.

Parameters:
faultActor - the matched SOAP fault actor

getFaultDetail

public QName getFaultDetail()
Returns the matched SOAP fault detail.

Returns:
the matched SOAP fault detail

setFaultDetail

public void setFaultDetail(QName faultDetail)
Sets the matched SOAP fault detail.

Parameters:
faultDetail - the matched SOAP fault detail