public interface SAMLAttributeStatementData
| Modifier and Type | Method and Description | 
|---|---|
| void | addAttributeInfo(Collection<SAMLAttributeData> attrs)Deprecated.  Adds a collection of attributes to this instance, to the end of the existing
 list, in the order that the param Collection iterates through the Collection. | 
| void | addAttributeInfo(SAMLAttributeData attr)Deprecated.  Adds a single attribute to this instance, at the end of the existing list. | 
| Collection<SAMLAttributeData> | getAttributeInfo()Deprecated.  Returns a collection of attributes contained by a single
 AttributeStatementof a SAML Assertion. | 
| SAMLAttributeData | getAttributeInfo(String AttributeName)Deprecated.  Returns the SAMLAttributeInfo objecfor a given attribute name. | 
| Collection<SAML2AttributeStatementInfo> | getCollectionsForSAML2AttributeStatementInfo()Deprecated.  build a collection of SAML2AttributeStatementInfo objects  for SAML 2.0 | 
| Collection<SAMLAttributeStatementInfo> | getCollectionsForSAMLAttributeStatementInfo()Deprecated.  build a collection of SAMLAttributeStatementInfo objects for SAML 1.1 | 
| boolean | hasAttributeInfo(String attributeName)Deprecated.  check if the SAMLAttributeInfo object exist for a given attribute name. | 
| boolean | hasAttributeValue(String attributeName,
                 String attributeValue)Deprecated.  | 
| boolean | isAttributeOnlyRequest()Deprecated.  check if if this is a SAML Attribute only request. | 
| boolean | isEmpty()Deprecated.  check if this has empty SAML Attributes collection | 
| void | setAttributeOnlyRequest(boolean attributeOnlyRequest)Deprecated.  set this is a SAML Attribute only request. | 
| int | size()Deprecated.  return the size of the SAML Attributes collection in this object. | 
Collection<SAMLAttributeData> getAttributeInfo()
SAMLAttributeData getAttributeInfo(String AttributeName)
void addAttributeInfo(SAMLAttributeData attr)
attr - represents a single attribute to be addedvoid addAttributeInfo(Collection<SAMLAttributeData> attrs)
attrs - represents multiple attributes to be addedCollection<SAML2AttributeStatementInfo> getCollectionsForSAML2AttributeStatementInfo()
Collection<SAMLAttributeStatementInfo> getCollectionsForSAMLAttributeStatementInfo()
boolean isAttributeOnlyRequest()
void setAttributeOnlyRequest(boolean attributeOnlyRequest)
attributeOnlyRequest - set true if this is a SAML Attribute only requestboolean isEmpty()
int size()
boolean hasAttributeInfo(String attributeName)
attributeName - name of the attribute to be checked