Package org.opensaml.saml.saml2.metadata
Interface IndexedEndpoint
-
- All Superinterfaces:
AttributeExtensibleXMLObject,ElementExtensibleXMLObject,Endpoint,SAMLObject,XMLObject
- All Known Subinterfaces:
ArtifactResolutionService,AssertionConsumerService,DiscoveryResponse
public interface IndexedEndpoint extends Endpoint
SAML 2.0 Metadata IndexedEndpoint.
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ELEMENT_LOCAL_NAMELocal name, no namespace.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static StringINDEX_ATTRIB_NAMEindex attribute name.static StringIS_DEFAULT_ATTRIB_NAMEisDeault attribute name.static StringTYPE_LOCAL_NAMELocal name of the XSI type.static QNameTYPE_NAMEQName of the XSI type.-
Fields inherited from interface org.opensaml.saml.saml2.metadata.Endpoint
BINDING_ATTRIB_NAME, LOCATION_ATTRIB_NAME, RESPONSE_LOCATION_ATTRIB_NAME
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegergetIndex()Gets the index of the endpoint.BooleanisDefault()Gets whether this is the default endpoint in a list.XSBooleanValueisDefaultXSBoolean()Gets whether this is the default endpoint in a list.voidsetIndex(Integer index)Sets the index of the endpoint.voidsetIsDefault(Boolean newIsDefault)Sets whether this is the default endpoint in a list.voidsetIsDefault(XSBooleanValue newIsDefault)Sets whether this is the default endpoint in a list.-
Methods inherited from interface org.opensaml.core.xml.AttributeExtensibleXMLObject
getUnknownAttributes
-
Methods inherited from interface org.opensaml.core.xml.ElementExtensibleXMLObject
getUnknownXMLObjects, getUnknownXMLObjects
-
Methods inherited from interface org.opensaml.saml.saml2.metadata.Endpoint
getBinding, getLocation, getResponseLocation, setBinding, setLocation, setResponseLocation
-
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
Local name, no namespace.- 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.
-
INDEX_ATTRIB_NAME
static final String INDEX_ATTRIB_NAME
index attribute name.- See Also:
- Constant Field Values
-
IS_DEFAULT_ATTRIB_NAME
static final String IS_DEFAULT_ATTRIB_NAME
isDeault attribute name.- See Also:
- Constant Field Values
-
-
Method Detail
-
getIndex
Integer getIndex()
Gets the index of the endpoint.- Returns:
- index of the endpoint
-
setIndex
void setIndex(Integer index)
Sets the index of the endpoint.- Parameters:
index- index of the endpoint
-
isDefault
Boolean isDefault()
Gets whether this is the default endpoint in a list.- Returns:
- whether this is the default endpoint in a list
-
isDefaultXSBoolean
XSBooleanValue isDefaultXSBoolean()
Gets whether this is the default endpoint in a list.- Returns:
- whether this is the default endpoint in a list
-
setIsDefault
void setIsDefault(Boolean newIsDefault)
Sets whether this is the default endpoint in a list. Boolean values will be marshalled to either "true" or "false".- Parameters:
newIsDefault- whether this is the default endpoint in a list
-
setIsDefault
void setIsDefault(XSBooleanValue newIsDefault)
Sets whether this is the default endpoint in a list.- Parameters:
newIsDefault- whether this is the default endpoint in a list
-
-