Package com.sun.identity.saml2.protocol
Interface IDPEntry
- All Superinterfaces:
XmlSerializable
This interface defines methods to set/retrieve single identity provider
information trusted by the request issuer to authenticate the presenter.
-
Method Summary
Modifier and TypeMethodDescriptiongetLoc()
Return the value ofLoc
attribute.getName()
Returns the value ofName
attribute.Returns theProviderID
attribute value.boolean
Returns true if object is mutable.void
Makes this object immutable.void
Sets the value ofLoc
attribute.void
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 Details
-
getProviderID
String getProviderID()Returns theProviderID
attribute value.- Returns:
- value of the
ProviderID
attribute. - See Also:
-
setProviderID
Sets theProviderID
attribute value.- Parameters:
uri
- new value ofProviderID
attribute.- Throws:
com.sun.identity.saml2.common.SAML2Exception
- if the object is immutable.- See Also:
-
getName
String getName()Returns the value ofName
attribute.- Returns:
- value of the
Name
attribute. - See Also:
-
setName
Sets the value ofName
attribute.- Parameters:
name
- new value ofName
attribute.- Throws:
com.sun.identity.saml2.common.SAML2Exception
- if the object is immutable.- See Also:
-
getLoc
String getLoc()Return the value ofLoc
attribute.- Returns:
- value of
Loc
attribute. - See Also:
-
setLoc
Sets the value ofLoc
attribute.- Parameters:
locationURI
- value ofLoc
attribute.- Throws:
com.sun.identity.saml2.common.SAML2Exception
- if the object is immutable.- See Also:
-
makeImmutable
void makeImmutable()Makes this object immutable. -
isMutable
boolean isMutable()Returns true if object is mutable.- Returns:
- true if object is mutable.
-