public class RoleCrosswalk extends AbstractPackagerWrappingCrosswalk implements IngestionCrosswalk, DisseminationCrosswalk
Translate between DSpace Group & EPeople definitions and a DSpace-specific XML export format (generated by the RoleDisseminator). This is primarily used for AIPs, but may be used by other Packagers as necessary.
This crosswalk allows you to export DSpace Groups & EPeople to this XML structured format. It also allows you to import an XML file of this format in order to restore DSpace Groups and EPeople defined within it.
This is just wrappers; the real work is done in RoleDisseminator and RoleIngester.
RoleDisseminator,
RoleIngester,
AbstractPackagerWrappingCrosswalk,
IngestionCrosswalk,
DisseminationCrosswalkXSI_NS| Constructor and Description |
|---|
RoleCrosswalk() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
canDisseminate(DSpaceObject dso)
Predicate: Can this disseminator crosswalk the given object.
|
org.jdom.Element |
disseminateElement(DSpaceObject dso)
Execute crosswalk, returning one XML root element as
a JDOM
Element object. |
java.util.List<org.jdom.Element> |
disseminateList(DSpaceObject dso)
Execute crosswalk, returning List of XML elements.
|
org.jdom.Namespace[] |
getNamespaces()
Get XML namespaces of the elements this crosswalk may return.
|
java.lang.String |
getSchemaLocation()
Get the XML Schema location(s) of the target metadata format.
|
void |
ingest(Context context,
DSpaceObject dso,
org.jdom.Element root)
Ingest a whole XML document, starting at specified root.
|
void |
ingest(Context context,
DSpaceObject dso,
java.util.List<org.jdom.Element> metadata)
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?
|
getIngestionLicense, getPackagingParameters, setIngestionLicense, setPackagingParameterspublic org.jdom.Namespace[] getNamespaces()
getNamespaces in interface DisseminationCrosswalkpublic java.lang.String getSchemaLocation()
xsi: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)
canDisseminate in interface DisseminationCrosswalkdso - dspace object, e.g. an Item.public boolean preferList()
preferList in interface DisseminationCrosswalkpublic java.util.List<org.jdom.Element> disseminateList(DSpaceObject dso) throws CrosswalkException, java.io.IOException, java.sql.SQLException, AuthorizeException
List 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 DisseminationCrosswalkdso - the DSpace Object whose metadata to export.CrosswalkInternalException - (CrosswalkException) failure of the crosswalk itself.CrosswalkObjectNotSupported - (CrosswalkException) Cannot crosswalk this kind of DSpace object.java.io.IOException - I/O failure in services this callsjava.sql.SQLException - Database failure in services this callsAuthorizeException - current user not authorized for this operation.CrosswalkExceptionpublic org.jdom.Element disseminateElement(DSpaceObject dso) throws CrosswalkException, java.io.IOException, java.sql.SQLException, AuthorizeException
Element object.
This is typically the root element of a document.
disseminateElement in interface DisseminationCrosswalkdso - the DSpace Object whose metadata to export.nullCrosswalkInternalException - (CrosswalkException) failure of the crosswalk itself.CrosswalkObjectNotSupported - (CrosswalkException) Cannot crosswalk this kind of DSpace object.java.io.IOException - I/O failure in services this callsjava.sql.SQLException - Database failure in services this callsAuthorizeException - current user not authorized for this operation.CrosswalkExceptionpublic void ingest(Context context, DSpaceObject dso, java.util.List<org.jdom.Element> metadata) throws CrosswalkException, java.io.IOException, java.sql.SQLException, AuthorizeException
ingest in interface IngestionCrosswalkcontext - dso - metadata - CrosswalkExceptionjava.io.IOExceptionjava.sql.SQLExceptionAuthorizeExceptionCrosswalkInternalException - (CrosswalkException) failure of the crosswalk itself.CrosswalkObjectNotSupported - (CrosswalkException) Cannot crosswalk into this kind of DSpace object.MetadataValidationException - (CrosswalkException) metadata format was not acceptable or missing required elements.public void ingest(Context context, DSpaceObject dso, org.jdom.Element root) throws CrosswalkException, java.io.IOException, java.sql.SQLException, AuthorizeException
This essentially just wraps a call to the configured Role PackageIngester.
ingest in interface IngestionCrosswalkcontext - dso - root - CrosswalkExceptionjava.io.IOExceptionjava.sql.SQLExceptionAuthorizeExceptionCrosswalkInternalException - (CrosswalkException) failure of the crosswalk itself.CrosswalkObjectNotSupported - (CrosswalkException) Cannot crosswalk into this kind of DSpace object.MetadataValidationException - (CrosswalkException) metadata format was not acceptable or missing required elements.Copyright © 2018 DuraSpace. All Rights Reserved.