com.sun.identity.saml2.assertion
Interface AssertionIDRef


public interface AssertionIDRef

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
 String getValue()
          Returns the value of the AssertionIDRef.
 boolean isMutable()
          Returns the mutability of the object.
 void makeImmutable()
          Makes the object immutable.
 void setValue(String value)
          Sets the value of this AssertionIDRef.
 String toXMLString()
          Returns a String representation of the element.
 String toXMLString(boolean includeNS, boolean declareNS)
          Returns a String representation of the element.
 

Method Detail

getValue

String getValue()
Returns the value of the AssertionIDRef.

Returns:
the value of this AssertionIDRef.
See Also:
AssertionIDRef.setValue(String)

setValue

void setValue(String value)
              throws SAML2Exception
Sets the value of this AssertionIDRef.

Parameters:
value - new AssertionIDRef.
Throws:
SAML2Exception - if the object is immutable.
See Also:
AssertionIDRef.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.

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 converted
declareNS - 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.