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 ArrayList
getExtensibilityAttributes()
String
getRelationshipType()
Method getRelationshipType.String
getValue()
Method getValuevoid
readExternal(ObjectInput inObject)
Restore the contents of the object that was previously saved.void
setExtensibilityAttributes(ArrayList extensibilityAttributes)
void
setRelationshipType(String relationshipType)
Method setRelationshipTypevoid
setValue(String value)
Method setValueString
toString()
void
writeExternal(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:
writeExternal
in 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:
readExternal
in interfaceExternalizable
- Parameters:
in
- The stream to read the object contents from- Throws:
IOException
ClassNotFoundException
-
-