com.sun.identity.saml2.protocol
インタフェース StatusDetail


public interface StatusDetail

This class represents the StatusDetailType complex type in SAML protocol schema. The StatusDetail element MAY be used to specify additional information concerning the status of the request.

 <complexType name="StatusDetailType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <any/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


メソッドの概要
 List getAny()
          Returns the value of the Any property.
 boolean isMutable()
          Returns true if the object is mutable false otherwise
 void makeImmutable()
          Makes the obejct immutable
 void setAny(List anyList)
          Sets the value of the Any property.
 String toXMLString()
          Returns the StatusDetail in an XML document String format based on the StatusDetail schema described above.
 String toXMLString(boolean includeNSPrefix, boolean declareNS)
          Returns the StatusDetail in an XML document String format based on the StatusDetail schema described above.
 

メソッドの詳細

getAny

List getAny()
Returns the value of the Any property.

戻り値:
A list containing objects of type String
関連項目:
StatusDetail.setAny(List)

setAny

void setAny(List anyList)
            throws SAML2Exception
Sets the value of the Any property.

パラメータ:
anyList - A list containing objects of type String
例外:
SAML2Exception - if the object is immutable
関連項目:
StatusDetail.getAny()

toXMLString

String toXMLString()
                   throws SAML2Exception
Returns the StatusDetail in an XML document String format based on the StatusDetail schema described above.

戻り値:
An XML String representing the StatusDetail.
例外:
SAML2Exception - if some error occurs during conversion to String.

toXMLString

String toXMLString(boolean includeNSPrefix,
                   boolean declareNS)
                   throws SAML2Exception
Returns the StatusDetail in an XML document String format based on the StatusDetail schema described above.

パラメータ:
includeNSPrefix - 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 XML String representing the StatusDetail.
例外:
SAML2Exception - if some error occurs during conversion to String.

makeImmutable

void makeImmutable()
Makes the obejct immutable


isMutable

boolean isMutable()
Returns true if the object is mutable false otherwise

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