Class RequestSecurityTokenCollectionType
- java.lang.Object
-
- com.sun.xml.ws.security.trust.impl.wssx.bindings.RequestSecurityTokenCollectionType
-
public class RequestSecurityTokenCollectionType extends Object
The RequestSecurityTokenCollection (RSTC) element is used to provide multiple RST requests. One or more RSTR elements in an RSTRC element are returned in the response to the RequestSecurityTokenCollection.Java class for RequestSecurityTokenCollectionType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="RequestSecurityTokenCollectionType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="RequestSecurityToken" type="{http://docs.oasis-open.org/ws-sx/ws-trust/200512}RequestSecurityTokenType" maxOccurs="unbounded" minOccurs="2"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<RequestSecurityTokenType>requestSecurityToken
-
Constructor Summary
Constructors Constructor Description RequestSecurityTokenCollectionType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<RequestSecurityTokenType>getRequestSecurityToken()Gets the value of the requestSecurityToken property.
-
-
-
Field Detail
-
requestSecurityToken
protected List<RequestSecurityTokenType> requestSecurityToken
-
-
Method Detail
-
getRequestSecurityToken
public List<RequestSecurityTokenType> getRequestSecurityToken()
Gets the value of the requestSecurityToken property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the requestSecurityToken property.For example, to add a new item, do as follows:
getRequestSecurityToken().add(newItem);Objects of the following type(s) are allowed in the list
RequestSecurityTokenType
-
-