Class CorrelationHeader
- java.lang.Object
-
- com.sun.identity.liberty.ws.soapbinding.CorrelationHeader
-
@SupportedAll public class CorrelationHeader extends Object
TheCorrelationHeader
class representsCorrelation
element defined in SOAP binding schema. ThemessageID
is a required attribute and will be generated automatically when a constructor is called.
-
-
Constructor Summary
Constructors Constructor Description CorrelationHeader()
Default Construtor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addToParent(Element headerE)
Converts this header toorg.w3c.dom.Element
and add to parent Header Element.String
getActor()
Returns value ofactor
attribute.String
getId()
Returns value ofid
attribute.String
getMessageID()
Returns value ofmessageID
attribute.Boolean
getMustUnderstand()
Returns value ofmustUnderstand
attribute.String
getRefToMessageID()
Returns value ofrefToMessageID
attribute.Date
getTimestamp()
Returns value oftimestamp
attribute.void
setActor(String actor)
Sets value ofactor
attribute.void
setMustUnderstand(Boolean mustUnderstand)
Sets value ofmustUnderstand
attribute.void
setRefToMessageID(String refToMessageID)
Sets value ofrefToMessageID
attribute.
-
-
-
Method Detail
-
getMessageID
public String getMessageID()
Returns value ofmessageID
attribute.- Returns:
- value of
messageID
attribute
-
getRefToMessageID
public String getRefToMessageID()
Returns value ofrefToMessageID
attribute.- Returns:
- value of
refToMessageID
attribute
-
getTimestamp
public Date getTimestamp()
Returns value oftimestamp
attribute.- Returns:
- value of
timestamp
attribute
-
getId
public String getId()
Returns value ofid
attribute.- Returns:
- value of
id
attribute
-
getMustUnderstand
public Boolean getMustUnderstand()
Returns value ofmustUnderstand
attribute.- Returns:
- value of
mustUnderstand
attribute
-
getActor
public String getActor()
Returns value ofactor
attribute.- Returns:
- value of
actor
attribute
-
setMustUnderstand
public void setMustUnderstand(Boolean mustUnderstand)
Sets value ofmustUnderstand
attribute.- Parameters:
mustUnderstand
- value ofmustUnderstand
attribute
-
setActor
public void setActor(String actor)
Sets value ofactor
attribute.- Parameters:
actor
- value ofactor
attribute
-
setRefToMessageID
public void setRefToMessageID(String refToMessageID)
Sets value ofrefToMessageID
attribute.- Parameters:
refToMessageID
- value ofrefToMessageID
attribute
-
addToParent
public void addToParent(Element headerE)
Converts this header toorg.w3c.dom.Element
and add to parent Header Element.- Parameters:
headerE
- parent Header Element
-
-