Package org.opensaml.saml.ext.saml2mdrpi
Interface PublicationInfo
-
- All Superinterfaces:
SAMLObject,XMLObject
public interface PublicationInfo extends SAMLObject
Representation of the<mdrpi:PublicationInfo>element.
-
-
Field Summary
Fields Modifier and Type Field Description static StringCREATION_INSTANT_ATTRIB_NAMEcreation attribute name.static QNameCREATION_INSTANT_ATTRIB_QNAMEQName of the creation attribute.static StringDEFAULT_ELEMENT_LOCAL_NAMEName of the element inside the Extensions.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static StringPUBLICATION_ID_ATTRIB_NAMEpublication id attribute name.static StringPUBLISHER_ATTRIB_NAMEpublisher 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 InstantgetCreationInstant()Get the creation instant.StringgetPublicationId()Get the publicationId.StringgetPublisher()Get the publisher.List<UsagePolicy>getUsagePolicies()Get theUsagePolicys.voidsetCreationInstant(Instant dateTime)Set the creation instant.voidsetPublicationId(String publicationId)Set the publicationId.voidsetPublisher(String publisher)Set the publisher.-
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.
-
PUBLISHER_ATTRIB_NAME
static final String PUBLISHER_ATTRIB_NAME
publisher attribute name.- See Also:
- Constant Field Values
-
CREATION_INSTANT_ATTRIB_NAME
static final String CREATION_INSTANT_ATTRIB_NAME
creation attribute name.- See Also:
- Constant Field Values
-
CREATION_INSTANT_ATTRIB_QNAME
static final QName CREATION_INSTANT_ATTRIB_QNAME
QName of the creation attribute.
-
PUBLICATION_ID_ATTRIB_NAME
static final String PUBLICATION_ID_ATTRIB_NAME
publication id attribute name.- See Also:
- Constant Field Values
-
-
Method Detail
-
getPublisher
String getPublisher()
Get the publisher.- Returns:
- the publisher
-
setPublisher
void setPublisher(String publisher)
Set the publisher.- Parameters:
publisher- the publisher
-
getCreationInstant
Instant getCreationInstant()
Get the creation instant.- Returns:
- the creation instant
-
setCreationInstant
void setCreationInstant(Instant dateTime)
Set the creation instant.- Parameters:
dateTime- the instant
-
getPublicationId
String getPublicationId()
Get the publicationId.- Returns:
- the publicationId
-
setPublicationId
void setPublicationId(String publicationId)
Set the publicationId.- Parameters:
publicationId- the publicationIdr
-
getUsagePolicies
List<UsagePolicy> getUsagePolicies()
Get theUsagePolicys.- Returns:
- the list of policies
-
-