Package com.sun.identity.saml2.protocol
Interface IDPEntry
-
- All Superinterfaces:
XmlSerializable
@SupportedAll public interface IDPEntry extends XmlSerializable
This interface defines methods to set/retrieve single identity provider information trusted by the request issuer to authenticate the presenter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetLoc()Return the value ofLocattribute.StringgetName()Returns the value ofNameattribute.StringgetProviderID()Returns theProviderIDattribute value.booleanisMutable()Returns true if object is mutable.voidmakeImmutable()Makes this object immutable.voidsetLoc(String locationURI)Sets the value ofLocattribute.voidsetName(String name)Sets the value ofNameattribute.voidsetProviderID(String uri)Sets theProviderIDattribute value.-
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
-
-
-
Method Detail
-
getProviderID
String getProviderID()
Returns theProviderIDattribute value.- Returns:
- value of the
ProviderIDattribute. - See Also:
setProviderID(String)
-
setProviderID
void setProviderID(String uri) throws SAML2Exception
Sets theProviderIDattribute value.- Parameters:
uri- new value ofProviderIDattribute.- Throws:
SAML2Exception- if the object is immutable.- See Also:
getProviderID()
-
getName
String getName()
Returns the value ofNameattribute.- Returns:
- value of the
Nameattribute. - See Also:
setName(String)
-
setName
void setName(String name) throws SAML2Exception
Sets the value ofNameattribute.- Parameters:
name- new value ofNameattribute.- Throws:
SAML2Exception- if the object is immutable.- See Also:
getName()
-
getLoc
String getLoc()
Return the value ofLocattribute.- Returns:
- value of
Locattribute. - See Also:
setLoc(String)
-
setLoc
void setLoc(String locationURI) throws SAML2Exception
Sets the value ofLocattribute.- Parameters:
locationURI- value ofLocattribute.- Throws:
SAML2Exception- if the object is immutable.- See Also:
getLoc()
-
makeImmutable
void makeImmutable()
Makes this object immutable.
-
isMutable
boolean isMutable()
Returns true if object is mutable.- Returns:
- true if object is mutable.
-
-