Package com.sun.identity.saml2.protocol
Interface Extensions
-
- All Superinterfaces:
XmlSerializable
@SupportedAll public interface Extensions extends XmlSerializable
The interfaceExtensions
defines methods for adding protcol message extension elements.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List
getAny()
Returns the list ofExtensions
object.boolean
isMutable()
Returns value true if object is mutable.void
makeImmutable()
Makes this object immutable.void
setAny(List value)
Sets theExtensions
object.-
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
-
-
-
Method Detail
-
setAny
void setAny(List value) throws SAML2Exception
Sets theExtensions
object.- Parameters:
value
- List of Document ElementsExtensions
objects- Throws:
SAML2Exception
- if the object is immutable.- See Also:
getAny()
-
getAny
List getAny()
Returns the list ofExtensions
object.- Returns:
- a List of Document Elements
Extensions
objects. - 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.
-
-