Class UsageDirectiveHeader
- java.lang.Object
-
- com.sun.identity.liberty.ws.soapbinding.UsageDirectiveHeader
-
@SupportedAll public class UsageDirectiveHeader extends Object
TheUsageDirectiveHeader
class represents 'UsageDirective' element defined in SOAP binding schema.
-
-
Constructor Summary
Constructors Constructor Description UsageDirectiveHeader(String ref)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getActor()
Returns value ofactor
attribute.List
getElements()
Returns a list of child elements.String
getId()
Returns value ofid
attribute.Boolean
getMustUnderstand()
Returns value ofmustUnderstand
attribute.String
getRef()
Returns value ofref
attribute.void
setActor(String actor)
Sets value ofactor
attribute.void
setElements(List elements)
Sets a list of child elements.void
setMustUnderstand(Boolean mustUnderstand)
Sets value ofmustUnderstand
attribute.void
setRef(String ref)
Sets value ofref
attribute.void
setSignFlag(boolean signFlag)
Sets the sign flag.
-
-
-
Constructor Detail
-
UsageDirectiveHeader
public UsageDirectiveHeader(String ref) throws SOAPBindingException
Constructor.- Parameters:
ref
- the value ofref
attribute.- Throws:
SOAPBindingException
- if the value ofref
attribute is null.
-
-
Method Detail
-
getRef
public String getRef()
Returns value ofref
attribute.- Returns:
- value of
ref
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.
-
getElements
public List getElements()
Returns a list of child elements. Each entry will be aorg.w3c.dom.Element
.- Returns:
- a list of child elements
-
setRef
public void setRef(String ref)
Sets value ofref
attribute.- Parameters:
ref
- value ofref
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.
-
setElements
public void setElements(List elements)
Sets a list of child elements. Each entry will be aorg.w3c.dom.Element
.- Parameters:
elements
- a list of child elements
-
setSignFlag
public void setSignFlag(boolean signFlag)
Sets the sign flag. The header will be signed if the value is true.- Parameters:
signFlag
- the sign flag
-
-