Package org.apache.axis2.addressing
Class RelatesTo
- java.lang.Object
 - 
- org.apache.axis2.addressing.RelatesTo
 
 
- 
- All Implemented Interfaces:
 Externalizable,Serializable,SafeSerializable
public class RelatesTo extends Object implements Externalizable, SafeSerializable
Class RelatesTo- See Also:
 - Serialized Form
 
 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ArrayListgetExtensibilityAttributes()StringgetRelationshipType()Method getRelationshipType.StringgetValue()Method getValuevoidreadExternal(ObjectInput inObject)Restore the contents of the object that was previously saved.voidsetExtensibilityAttributes(ArrayList extensibilityAttributes)voidsetRelationshipType(String relationshipType)Method setRelationshipTypevoidsetValue(String value)Method setValueStringtoString()voidwriteExternal(ObjectOutput o)Save the contents of this object. 
 - 
 
- 
- 
Method Detail
- 
getRelationshipType
public String getRelationshipType()
Method getRelationshipType. If the relationship type has not been set it returns the default valueAddressingConstants.Final.WSA_DEFAULT_RELATIONSHIP_TYPE 
- 
getValue
public String getValue()
Method getValue 
- 
setRelationshipType
public void setRelationshipType(String relationshipType)
Method setRelationshipType- Parameters:
 relationshipType-
 
- 
setValue
public void setValue(String value)
Method setValue- Parameters:
 value-
 
- 
getExtensibilityAttributes
public ArrayList getExtensibilityAttributes()
 
- 
setExtensibilityAttributes
public void setExtensibilityAttributes(ArrayList extensibilityAttributes)
 
- 
writeExternal
public void writeExternal(ObjectOutput o) throws IOException
Save the contents of this object. NOTE: Transient fields and static fields are not saved.- Specified by:
 writeExternalin interfaceExternalizable- Parameters:
 out- The stream to write the object contents to- Throws:
 IOException
 
- 
readExternal
public void readExternal(ObjectInput inObject) throws IOException, ClassNotFoundException
Restore the contents of the object that was previously saved. NOTE: The field data must read back in the same order and type as it was written. Some data will need to be validated when resurrected.- Specified by:
 readExternalin interfaceExternalizable- Parameters:
 in- The stream to read the object contents from- Throws:
 IOExceptionClassNotFoundException
 
 - 
 
 -