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


public interface IDPEntry

This interface defines methods to set/retrieve single identity provider information trusted by the request issuer to authenticate the presenter.


メソッドの概要
 String getLoc()
          Return the value of Loc attribute.
 String getName()
          Returns the value of Name attribute.
 String getProviderID()
          Returns the ProviderID attribute value.
 boolean isMutable()
          Returns true if object is mutable.
 void makeImmutable()
          Makes this object immutable.
 void setLoc(String locationURI)
          Sets the value of Loc attribute.
 void setName(String name)
          Sets the value of Name attribute.
 void setProviderID(String uri)
          Sets the ProviderID attribute value.
 String toXMLString()
          Returns a String representation of this Object.
 String toXMLString(boolean includeNSPrefix, boolean declareNS)
          Returns a String representation of this Object.
 

メソッドの詳細

getProviderID

String getProviderID()
Returns the ProviderID attribute value.

戻り値:
value of the ProviderID attribute.
関連項目:
IDPEntry.setProviderID(String)

setProviderID

void setProviderID(String uri)
                   throws SAML2Exception
Sets the ProviderID attribute value.

パラメータ:
uri - new value of ProviderID attribute.
例外:
SAML2Exception - if the object is immutable.
関連項目:
IDPEntry.getProviderID()

getName

String getName()
Returns the value of Name attribute.

戻り値:
value of the Name attribute.
関連項目:
IDPEntry.setName(String)

setName

void setName(String name)
             throws SAML2Exception
Sets the value of Name attribute.

パラメータ:
name - new value of Name attribute.
例外:
SAML2Exception - if the object is immutable.
関連項目:
IDPEntry.getName()

getLoc

String getLoc()
Return the value of Loc attribute.

戻り値:
value of Loc attribute.
関連項目:
IDPEntry.setLoc(String)

setLoc

void setLoc(String locationURI)
            throws SAML2Exception
Sets the value of Loc attribute.

パラメータ:
locationURI - value of Loc attribute.
例外:
SAML2Exception - if the object is immutable.
関連項目:
IDPEntry.getLoc()

toXMLString

String toXMLString()
                   throws SAML2Exception
Returns a String representation of this Object.

戻り値:
a String representation of this Object.
例外:
SAML2Exception - if cannot create String object.

toXMLString

String toXMLString(boolean includeNSPrefix,
                   boolean declareNS)
                   throws SAML2Exception
Returns a String representation of this Object.

パラメータ:
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.
戻り値:
the String representation of this Object.
例外:
SAML2Exception - if cannot create String object.

makeImmutable

void makeImmutable()
Makes this object immutable.


isMutable

boolean isMutable()
Returns true if object is mutable.

戻り値:
true if object is mutable.