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 String
getLoc()
Return the value ofLoc
attribute.String
getName()
Returns the value ofName
attribute.String
getProviderID()
Returns theProviderID
attribute value.boolean
isMutable()
Returns true if object is mutable.void
makeImmutable()
Makes this object immutable.void
setLoc(String locationURI)
Sets the value ofLoc
attribute.void
setName(String name)
Sets the value ofName
attribute.void
setProviderID(String uri)
Sets theProviderID
attribute value.-
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
-
-
-
Method Detail
-
getProviderID
String getProviderID()
Returns theProviderID
attribute value.- Returns:
- value of the
ProviderID
attribute. - See Also:
setProviderID(String)
-
setProviderID
void setProviderID(String uri) throws SAML2Exception
Sets theProviderID
attribute value.- Parameters:
uri
- new value ofProviderID
attribute.- Throws:
SAML2Exception
- if the object is immutable.- See Also:
getProviderID()
-
getName
String getName()
Returns the value ofName
attribute.- Returns:
- value of the
Name
attribute. - See Also:
setName(String)
-
setName
void setName(String name) throws SAML2Exception
Sets the value ofName
attribute.- Parameters:
name
- new value ofName
attribute.- Throws:
SAML2Exception
- if the object is immutable.- See Also:
getName()
-
getLoc
String getLoc()
Return the value ofLoc
attribute.- Returns:
- value of
Loc
attribute. - See Also:
setLoc(String)
-
setLoc
void setLoc(String locationURI) throws SAML2Exception
Sets the value ofLoc
attribute.- Parameters:
locationURI
- value ofLoc
attribute.- 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.
-
-