Package com.sun.identity.saml2.assertion
Interface AssertionIDRef
-
- All Superinterfaces:
XmlSerializable
@SupportedAll public interface AssertionIDRef extends XmlSerializable
This class represents the AssertionIDRef element.The following schema fragment specifies the expected content contained within this java content object.
<element name="AssertionIDRef" type="NCName"/>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetValue()Returns the value of theAssertionIDRef.booleanisMutable()Returns the mutability of the object.voidmakeImmutable()Makes the object immutable.voidsetValue(String value)Sets the value of thisAssertionIDRef.-
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
-
-
-
Method Detail
-
getValue
String getValue()
Returns the value of theAssertionIDRef.- Returns:
- the value of this
AssertionIDRef. - See Also:
setValue(String)
-
setValue
void setValue(String value) throws SAML2Exception
Sets the value of thisAssertionIDRef.- Parameters:
value- newAssertionIDRef.- Throws:
SAML2Exception- if the object is immutable.- See Also:
getValue()
-
makeImmutable
void makeImmutable()
Makes the object immutable.
-
isMutable
boolean isMutable()
Returns the mutability of the object.- Returns:
trueif the object is mutable;falseotherwise.
-
-