Package com.sun.identity.saml2.assertion
Interface AssertionIDRef
-
- All Known Implementing Classes:
AssertionIDRefImpl
public interface AssertionIDRefThis 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.StringtoXMLString()Returns a String representation of the element.StringtoXMLString(boolean includeNS, boolean declareNS)Returns a String representation of the element.
-
-
-
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.
-
toXMLString
String toXMLString() throws SAML2Exception
Returns a String representation of the element.- Returns:
- A string containing the valid XML for this element. By default name space name is prepended to the element name.
- Throws:
SAML2Exception- if the object does not conform to the schema.
-
toXMLString
String toXMLString(boolean includeNS, boolean declareNS) throws SAML2Exception
Returns a String representation of the element.- Parameters:
includeNS- Determines whether or not the namespace qualifier is prepended to the Element when converteddeclareNS- Determines whether or not the namespace is declared within the Element.- Returns:
- A string containing the valid XML for this element
- Throws:
SAML2Exception- if the object does not conform to the schema.
-
-