com.sun.identity.saml2.assertion
インタフェース 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"/>
 


メソッドの概要
 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.
 

メソッドの詳細

getValue

String getValue()
Returns the value of the AssertionIDRef.

戻り値:
the value of this AssertionIDRef.
関連項目:
AssertionIDRef.setValue(String)

setValue

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

パラメータ:
value - new AssertionIDRef.
例外:
SAML2Exception - if the object is immutable.
関連項目:
AssertionIDRef.getValue()

makeImmutable

void makeImmutable()
Makes the object immutable.


isMutable

boolean isMutable()
Returns the mutability of the object.

戻り値:
true if the object is mutable; false otherwise.

toXMLString

String toXMLString()
                   throws SAML2Exception
Returns a String representation of the element.

戻り値:
A string containing the valid XML for this element. By default name space name is prepended to the element name.
例外:
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.

パラメータ:
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.
戻り値:
A string containing the valid XML for this element
例外:
SAML2Exception - if the object does not conform to the schema.