public class METSRightsCrosswalk extends Object implements IngestionCrosswalk, DisseminationCrosswalk
Translate between DSpace internal policies (i.e. permissions) and the METSRights metadata schema (see http://www.loc.gov/standards/rights/METSRights.xsd for details).
Examples of METSRights usage available from: http://www.loc.gov/standards/rights/
This Crosswalk provides a way to export DSpace permissions into a standard format, and then re-import or restore them into a DSpace instance.
| Modifier and Type | Field and Description |
|---|---|
protected AuthorizeService |
authorizeService |
protected EPersonService |
ePersonService |
protected GroupService |
groupService |
protected ResourcePolicyService |
resourcePolicyService |
XSI_NS| Constructor and Description |
|---|
METSRightsCrosswalk() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
canDisseminate(DSpaceObject dso)
Predicate: Can this disseminator crosswalk the given object.
|
org.jdom.Element |
disseminateElement(Context context,
DSpaceObject dso)
Actually Disseminate into METSRights schema.
|
List<org.jdom.Element> |
disseminateList(Context context,
DSpaceObject dso)
Execute crosswalk, returning List of XML elements.
|
org.jdom.Namespace[] |
getNamespaces()
Get XML namespaces of the elements this crosswalk may return.
|
String |
getSchemaLocation()
Get the XML Schema location(s) of the target metadata format.
|
void |
ingest(Context context,
DSpaceObject dso,
org.jdom.Element root,
boolean createMissingMetadataFields)
Ingest a whole XML document, starting at specified root.
|
void |
ingest(Context context,
DSpaceObject dso,
List<org.jdom.Element> ml,
boolean createMissingMetadataFields)
Ingest a List of XML elements
|
boolean |
preferList()
Predicate: Does this disseminator prefer to return a list of Elements,
rather than a single root Element?
|
protected AuthorizeService authorizeService
protected EPersonService ePersonService
protected GroupService groupService
protected ResourcePolicyService resourcePolicyService
public org.jdom.Namespace[] getNamespaces()
DisseminationCrosswalkgetNamespaces in interface DisseminationCrosswalkpublic String getSchemaLocation()
DisseminationCrosswalkxsi:schemaLocation
attribute that should be applied to the generated XML.
It may return the empty string if no schema is known, but crosswalk authors are strongly encouraged to implement this call so their output XML can be validated correctly.
getSchemaLocation in interface DisseminationCrosswalkpublic boolean canDisseminate(DSpaceObject dso)
DisseminationCrosswalkcanDisseminate in interface DisseminationCrosswalkdso - dspace object, e.g. an Item.public org.jdom.Element disseminateElement(Context context, DSpaceObject dso) throws CrosswalkException, IOException, SQLException, AuthorizeException
disseminateElement in interface DisseminationCrosswalkcontext - contextdso - DSpace Object<RightsDeclarationMD> translationCrosswalkException - if crosswalk errorIOException - if IO errorSQLException - if database errorAuthorizeException - if authorization errorpublic List<org.jdom.Element> disseminateList(Context context, DSpaceObject dso) throws CrosswalkException, IOException, SQLException, AuthorizeException
DisseminationCrosswalkList of JDOM Element objects representing
the XML produced by the crosswalk. This is typically called when
a list of fields is desired, e.g. for embedding in a METS document
xmlData field.
When there are no results, an
empty list is returned, but never null.
disseminateList in interface DisseminationCrosswalkcontext - contextdso - the DSpace Object whose metadata to export.CrosswalkInternalException - (CrosswalkException) failure of the crosswalk itself.CrosswalkObjectNotSupported - (CrosswalkException) Cannot crosswalk this kind of DSpace object.IOException - I/O failure in services this callsSQLException - Database failure in services this callsAuthorizeException - current user not authorized for this operation.CrosswalkExceptionpublic boolean preferList()
DisseminationCrosswalk
Some metadata formats have an XML schema without a root element,
for example, the Dublin Core and Qualified Dublin Core formats.
This would be true for a crosswalk into QDC, since
it would "prefer" to return a list, since any root element it has
to produce would have to be part of a nonstandard schema. In
most cases your implementation will want to return
false
preferList in interface DisseminationCrosswalkpublic void ingest(Context context, DSpaceObject dso, org.jdom.Element root, boolean createMissingMetadataFields) throws CrosswalkException, IOException, SQLException, AuthorizeException
ingest in interface IngestionCrosswalkcontext - dso - root - createMissingMetadataFields - CrosswalkException - if crosswalk errorIOException - if IO errorSQLException - if database errorAuthorizeException - if authorization errorpublic void ingest(Context context, DSpaceObject dso, List<org.jdom.Element> ml, boolean createMissingMetadataFields) throws CrosswalkException, IOException, SQLException, AuthorizeException
This method creates new DSpace Policies based on the parsed METSRights XML contents. These Policies assign permissions to DSpace Groups or EPeople.
NOTE: This crosswalk will NOT create missing DSpace Groups or EPeople. Therefore, it is recommended to use this METSRightsCrosswalk in conjunction with another Crosswalk which can create/restore missing Groups or EPeople (e.g. RoleCrosswalk).
ingest in interface IngestionCrosswalkcontext - contextdso - Dspace objectml - list of elementscreateMissingMetadataFields - whether to create missing fieldsCrosswalkException - if crosswalk errorIOException - if IO errorSQLException - if database errorAuthorizeException - if authorization errorRoleCrosswalkCopyright © 2022 LYRASIS. All rights reserved.