Package com.sun.identity.saml2.protocol
Interface Extensions
- 
- All Superinterfaces:
 XmlSerializable
@SupportedAll public interface Extensions extends XmlSerializable
The interfaceExtensionsdefines methods for adding protcol message extension elements. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListgetAny()Returns the list ofExtensionsobject.booleanisMutable()Returns value true if object is mutable.voidmakeImmutable()Makes this object immutable.voidsetAny(List value)Sets theExtensionsobject.- 
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString 
 - 
 
 - 
 
- 
- 
Method Detail
- 
setAny
void setAny(List value) throws SAML2Exception
Sets theExtensionsobject.- Parameters:
 value- List of Document ElementsExtensionsobjects- Throws:
 SAML2Exception- if the object is immutable.- See Also:
 getAny()
 
- 
getAny
List getAny()
Returns the list ofExtensionsobject.- Returns:
 - a List of Document Elements 
Extensionsobjects. - See Also:
 setAny(List)
 
- 
makeImmutable
void makeImmutable()
Makes this object immutable. 
- 
isMutable
boolean isMutable()
Returns value true if object is mutable.- Returns:
 - true if object is mutable.
 
 
 - 
 
 -