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 String
getValue()
Returns the value of theAssertionIDRef
.boolean
isMutable()
Returns the mutability of the object.void
makeImmutable()
Makes the object immutable.void
setValue(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:
true
if the object is mutable;false
otherwise.
-
-