Package org.opensaml.saml.ext.saml2mdrpi
Interface RegistrationInfo
- All Superinterfaces:
SAMLObject
,XMLObject
- All Known Implementing Classes:
RegistrationInfoImpl
public interface RegistrationInfo extends SAMLObject
Representation of the
<mdrpi:RegistrationInfo>
element.-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_ELEMENT_LOCAL_NAME
Name of the element inside the Extensions.static QName
DEFAULT_ELEMENT_NAME
Default element name.static String
REGISTRATION_AUTHORITY_ATTRIB_NAME
registrationAuthority attribute name.static String
REGISTRATION_INSTANT_ATTRIB_NAME
registrationInstant attribute name.static QName
REGISTRATION_INSTANT_ATTRIB_QNAME
QName of the registrationInstant attribute.static String
TYPE_LOCAL_NAME
Local name of the XSI type.static QName
TYPE_NAME
QName of the XSI type. -
Method Summary
Modifier and Type Method Description String
getRegistrationAuthority()
Get the registration authority.Instant
getRegistrationInstant()
Get the registration instant.List<RegistrationPolicy>
getRegistrationPolicies()
Get theRegistrationPolicy
s.void
setRegistrationAuthority(String authority)
Set the registration authority.void
setRegistrationInstant(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 Details
-
DEFAULT_ELEMENT_LOCAL_NAME
Name of the element inside the Extensions.- See Also:
- Constant Field Values
-
DEFAULT_ELEMENT_NAME
Default element name. -
TYPE_LOCAL_NAME
Local name of the XSI type.- See Also:
- Constant Field Values
-
TYPE_NAME
QName of the XSI type. -
REGISTRATION_AUTHORITY_ATTRIB_NAME
registrationAuthority attribute name.- See Also:
- Constant Field Values
-
REGISTRATION_INSTANT_ATTRIB_NAME
registrationInstant attribute name.- See Also:
- Constant Field Values
-
REGISTRATION_INSTANT_ATTRIB_QNAME
QName of the registrationInstant attribute.
-
-
Method Details
-
getRegistrationAuthority
String getRegistrationAuthority()Get the registration authority.- Returns:
- the registration authority
-
setRegistrationAuthority
Set the registration authority.- Parameters:
authority
- the registration authority
-
getRegistrationInstant
Instant getRegistrationInstant()Get the registration instant.- Returns:
- the registration instant
-
setRegistrationInstant
Set the registration instant.- Parameters:
dateTime
- the instant
-
getRegistrationPolicies
List<RegistrationPolicy> getRegistrationPolicies()Get theRegistrationPolicy
s.- Returns:
- the list of policies
-