org.systinet.wasp.dd
Interface Serialization

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

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

This interface represents a serialization part in the deployment descriptor.

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 getSerializedClass()
          Returns the serialized class name.
 QName getSerializedType()
          Returns the serialized XML schema type.
 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 setSerializedClass(java.lang.String serializedClass)
          Sets the serialized class name.
 void setSerializedType(QName serializedType)
          Sets the serialized XML schema type.
 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

getSerializedClass

public java.lang.String getSerializedClass()
Returns the serialized class name.

Returns:
the serialized class name

setSerializedClass

public void setSerializedClass(java.lang.String serializedClass)
Sets the serialized class name.

Parameters:
serializedClass - the serialized class name

getSerializedType

public QName getSerializedType()
Returns the serialized XML schema type.

Returns:
the serialized XML schema type

setSerializedType

public void setSerializedType(QName serializedType)
Sets the serialized XML schema type.

Parameters:
serializedType - the serialized XML schema type