Package org.opensaml.saml.ext.saml2mdrpi
Interface RegistrationInfo
-
- All Superinterfaces:
SAMLObject,XMLObject
public interface RegistrationInfo extends SAMLObject
Representation of the<mdrpi:RegistrationInfo>element.
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ELEMENT_LOCAL_NAMEName of the element inside the Extensions.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static StringREGISTRATION_AUTHORITY_ATTRIB_NAMEregistrationAuthority attribute name.static StringREGISTRATION_INSTANT_ATTRIB_NAMEregistrationInstant attribute name.static QNameREGISTRATION_INSTANT_ATTRIB_QNAMEQName of the registrationInstant 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 StringgetRegistrationAuthority()Get the registration authority.InstantgetRegistrationInstant()Get the registration instant.List<RegistrationPolicy>getRegistrationPolicies()Get theRegistrationPolicys.voidsetRegistrationAuthority(String authority)Set the registration authority.voidsetRegistrationInstant(Instant dateTime)Set the registration instant.-
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
Name of the element inside the Extensions.- 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.
-
REGISTRATION_AUTHORITY_ATTRIB_NAME
static final String REGISTRATION_AUTHORITY_ATTRIB_NAME
registrationAuthority attribute name.- See Also:
- Constant Field Values
-
REGISTRATION_INSTANT_ATTRIB_NAME
static final String REGISTRATION_INSTANT_ATTRIB_NAME
registrationInstant attribute name.- See Also:
- Constant Field Values
-
REGISTRATION_INSTANT_ATTRIB_QNAME
static final QName REGISTRATION_INSTANT_ATTRIB_QNAME
QName of the registrationInstant attribute.
-
-
Method Detail
-
getRegistrationAuthority
String getRegistrationAuthority()
Get the registration authority.- Returns:
- the registration authority
-
setRegistrationAuthority
void setRegistrationAuthority(String authority)
Set the registration authority.- Parameters:
authority- the registration authority
-
getRegistrationInstant
Instant getRegistrationInstant()
Get the registration instant.- Returns:
- the registration instant
-
setRegistrationInstant
void setRegistrationInstant(Instant dateTime)
Set the registration instant.- Parameters:
dateTime- the instant
-
getRegistrationPolicies
List<RegistrationPolicy> getRegistrationPolicies()
Get theRegistrationPolicys.- Returns:
- the list of policies
-
-