Package org.opensaml.saml.saml1.core
Interface AuthorityBinding
-
- All Superinterfaces:
SAMLObject,XMLObject
public interface AuthorityBinding extends SAMLObject
Interface to define how aAuthorityBindingelement behaves.
-
-
Field Summary
Fields Modifier and Type Field Description static StringAUTHORITYKIND_ATTRIB_NAMEName for the AuthorityKind attribute.static StringBINDING_ATTRIB_NAMEName for the Binding attribute.static StringDEFAULT_ELEMENT_LOCAL_NAMEElement name, no namespace.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static StringLOCATION_ATTRIB_NAMEName for the Location attribute.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 QNamegetAuthorityKind()Get the type of authority described.StringgetBinding()Get the authority binding.StringgetLocation()Get the authority location.voidsetAuthorityKind(QName authorityKind)Set the type of authority described.voidsetBinding(String binding)Set the authority binding.voidsetLocation(String location)Set the authority location.-
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 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.
-
AUTHORITYKIND_ATTRIB_NAME
static final String AUTHORITYKIND_ATTRIB_NAME
Name for the AuthorityKind attribute.- See Also:
- Constant Field Values
-
LOCATION_ATTRIB_NAME
static final String LOCATION_ATTRIB_NAME
Name for the Location attribute.- See Also:
- Constant Field Values
-
BINDING_ATTRIB_NAME
static final String BINDING_ATTRIB_NAME
Name for the Binding attribute.- See Also:
- Constant Field Values
-
-
Method Detail
-
getAuthorityKind
QName getAuthorityKind()
Get the type of authority described.- Returns:
- the type of authority
-
setAuthorityKind
void setAuthorityKind(QName authorityKind)
Set the type of authority described.- Parameters:
authorityKind- the type of authority
-
getLocation
String getLocation()
Get the authority location.- Returns:
- the location
-
setLocation
void setLocation(String location)
Set the authority location.- Parameters:
location- the location
-
getBinding
String getBinding()
Get the authority binding.- Returns:
- the binding
-
setBinding
void setBinding(String binding)
Set the authority binding.- Parameters:
binding- the binding
-
-