Class ServiceInstanceUpdateHeader
- java.lang.Object
-
- com.sun.identity.liberty.ws.soapbinding.ServiceInstanceUpdateHeader
-
public class ServiceInstanceUpdateHeader extends Object
TheServiceInstanceUpdateHeader
class representsServiceInstanceUpdate
element defined in SOAP binding schema.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ServiceInstanceUpdateHeader.Credential
TheServiceInstanceUpdateHeader.Credential
class representsCredential
element inServiceInstanceUpdate
element defined in SOAP binding schema.
-
Constructor Summary
Constructors Constructor Description ServiceInstanceUpdateHeader()
Default Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getActor()
Returns value ofactor
attribute.List
getCredentials()
Returns a list of value ofCredential
element.String
getEndpoint()
Returns value ofEndpoint
element.String
getId()
Returns value ofid
attribute.Boolean
getMustUnderstand()
Returns value ofmustUnderstand
attribute.List
getSecurityMechIDs()
Returns a list of value ofSecurityMechID
element.void
setActor(String actor)
Sets value ofactor
attribute.void
setCredentials(List credentials)
Sets a list of value ofCredential
element.void
setEndpoint(String endpoint)
Sets value ofEndpoint
element.void
setMustUnderstand(Boolean mustUnderstand)
Sets value ofmustUnderstand
attribute.void
setSecurityMechIDs(List securityMechIDs)
Sets a list of value ofSecurityMechID
element.void
setSignFlag(boolean signFlag)
Sets the sign flag.
-
-
-
Method Detail
-
getSecurityMechIDs
public List getSecurityMechIDs()
Returns a list of value ofSecurityMechID
element. Each entry of the list will be a String object.- Returns:
- a list of value of
SecurityMechID
element
-
getCredentials
public List getCredentials()
Returns a list of value ofCredential
element. Each entry of the list will be aServiceInstanceUpdateHeader.Credential
object.- Returns:
- a list of
Credential
elements.
-
getEndpoint
public String getEndpoint()
Returns value ofEndpoint
element.- Returns:
- value of
Endpoint
element
-
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.
-
setSecurityMechIDs
public void setSecurityMechIDs(List securityMechIDs)
Sets a list of value ofSecurityMechID
element. Each entry of the list will be a String object.- Parameters:
securityMechIDs
- a list of value ofSecurityMechID
element.
-
setCredentials
public void setCredentials(List credentials)
Sets a list of value ofCredential
element. Each entry of the list will be aServiceInstanceUpdateHeader.Credential
object.- Parameters:
credentials
- a list of value ofCredential
element
-
setEndpoint
public void setEndpoint(String endpoint)
Sets value ofEndpoint
element.- Parameters:
endpoint
- value ofEndpoint
element.
-
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.
-
setSignFlag
public void setSignFlag(boolean signFlag)
Sets the sign flag. The header is signed if the value is true.- Parameters:
signFlag
- the sign flag
-
-