Package org.opensaml.saml.saml2.core
Interface IDPEntry
-
- All Superinterfaces:
SAMLObject,XMLObject
public interface IDPEntry extends SAMLObject
SAML 2.0 Core IDPEntry.
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ELEMENT_LOCAL_NAMEElement local name.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static StringLOC_ATTRIB_NAMELoc attribute name.static StringNAME_ATTRIB_NAMEName attribute name.static StringPROVIDER_ID_ATTRIB_NAMEProviderID attribute name.static StringTYPE_LOCAL_NAMELocal name of the XSI type.static QNameTYPE_NAMEQName of the XSI type.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetLoc()Gets the Loc value.StringgetName()Gets the Name value.StringgetProviderID()Gets ProviderID URI.voidsetLoc(String newLoc)Sets the Loc value.voidsetName(String newName)Sets the Name value.voidsetProviderID(String newProviderID)Sets the ProviderID URI.-
Methods inherited from interface org.opensaml.core.xml.XMLObject
detach, getDOM, getElementQName, getIDIndex, getNamespaceManager, getNamespaces, getNoNamespaceSchemaLocation, getObjectMetadata, getOrderedChildren, getParent, getSchemaLocation, getSchemaType, hasChildren, hasParent, isNil, isNilXSBoolean, releaseChildrenDOM, releaseDOM, releaseParentDOM, resolveID, resolveIDFromRoot, setDOM, setNil, setNil, setNoNamespaceSchemaLocation, setParent, setSchemaLocation
-
-
-
-
Field Detail
-
DEFAULT_ELEMENT_LOCAL_NAME
static final String DEFAULT_ELEMENT_LOCAL_NAME
Element local name.- See Also:
- Constant Field Values
-
DEFAULT_ELEMENT_NAME
static final QName DEFAULT_ELEMENT_NAME
Default element name.
-
TYPE_LOCAL_NAME
static final String TYPE_LOCAL_NAME
Local name of the XSI type.- See Also:
- Constant Field Values
-
TYPE_NAME
static final QName TYPE_NAME
QName of the XSI type.
-
PROVIDER_ID_ATTRIB_NAME
static final String PROVIDER_ID_ATTRIB_NAME
ProviderID attribute name.- See Also:
- Constant Field Values
-
NAME_ATTRIB_NAME
static final String NAME_ATTRIB_NAME
Name attribute name.- See Also:
- Constant Field Values
-
LOC_ATTRIB_NAME
static final String LOC_ATTRIB_NAME
Loc attribute name.- See Also:
- Constant Field Values
-
-
Method Detail
-
getProviderID
String getProviderID()
Gets ProviderID URI.- Returns:
- the ProviderID URI
-
setProviderID
void setProviderID(String newProviderID)
Sets the ProviderID URI.- Parameters:
newProviderID- the new ProviderID URI
-
getName
String getName()
Gets the Name value.- Returns:
- the Name value
-
setName
void setName(String newName)
Sets the Name value.- Parameters:
newName- the Name value
-
getLoc
String getLoc()
Gets the Loc value.- Returns:
- the Loc value
-
setLoc
void setLoc(String newLoc)
Sets the Loc value.- Parameters:
newLoc- the new Loc value
-
-