public class MODSDisseminationCrosswalk extends SelfNamedPlugin implements DisseminationCrosswalk
This class supports multiple dissemination crosswalks from DSpace internal data to the MODS XML format (see http://www.loc.gov/standards/mods/.)
It registers multiple Plugin names, which it reads from the DSpace configuration as follows:
"crosswalk.mods.properties."
describes a
MODS crosswalk. Everything after the last period is the plugin name,
and the value is the pathname (relative to dspace.dir/config
)
of the crosswalk configuration file.
You can have two names point to the same crosswalk, just add two configuration entries with the same value, e.g.
crosswalk.mods.properties.MODS = crosswalks/mods.properties crosswalk.mods.properties.default = crosswalks/mods.propertiesThe first line creates a plugin with the name
"MODS"
which is configured from the file dspace-dir/config/crosswalks/mods.properties
.
Since there is significant overhead in reading the properties file to configure the crosswalk, and a crosswalk instance may be used any number of times, we recommend caching one instance of the crosswalk for each name and simply reusing those instances. The PluginManager does this by default.
Modifier and Type | Field and Description |
---|---|
static org.jdom.Namespace |
MODS_NS
MODS namespace.
|
static String |
MODS_XSD
URL of MODS XML Schema
|
XSI_NS
Constructor and Description |
---|
MODSDisseminationCrosswalk() |
Modifier and Type | Method and Description |
---|---|
boolean |
canDisseminate(DSpaceObject dso)
ModsCrosswalk can disseminate: Items, Collections, Communities, and Site.
|
protected DCValue[] |
collection2Metadata(Collection collection)
Generate a list of metadata elements for the given DSpace
collection.
|
protected DCValue[] |
community2Metadata(Community community)
Generate a list of metadata elements for the given DSpace
community.
|
org.jdom.Element |
disseminateElement(DSpaceObject dso)
Disseminate an Item, Collection, or Community to MODS.
|
List<org.jdom.Element> |
disseminateList(DSpaceObject dso)
Returns object's metadata in MODS format, as List of XML structure nodes.
|
org.jdom.Namespace[] |
getNamespaces()
Return the MODS namespace
|
static String[] |
getPluginNames() |
String |
getSchemaLocation()
Return the MODS schema
|
protected DCValue[] |
item2Metadata(Item item)
Generate a list of metadata elements for the given DSpace item.
|
boolean |
preferList()
ModsCrosswalk prefer's element form over list.
|
protected DCValue[] |
site2Metadata(Site site)
Generate a list of metadata elements for the given DSpace
site.
|
getPluginInstanceName, setPluginInstanceName
public static final org.jdom.Namespace MODS_NS
public static final String MODS_XSD
public static String[] getPluginNames()
public org.jdom.Namespace[] getNamespaces()
getNamespaces
in interface DisseminationCrosswalk
public String getSchemaLocation()
getSchemaLocation
in interface DisseminationCrosswalk
public List<org.jdom.Element> disseminateList(DSpaceObject dso) throws CrosswalkException, IOException, SQLException, AuthorizeException
disseminateList
in interface DisseminationCrosswalk
dso
- 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.CrosswalkException
public org.jdom.Element disseminateElement(DSpaceObject dso) throws CrosswalkException, IOException, SQLException, AuthorizeException
disseminateElement
in interface DisseminationCrosswalk
dso
- the DSpace Object whose metadata to export.null
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.CrosswalkException
public boolean canDisseminate(DSpaceObject dso)
canDisseminate
in interface DisseminationCrosswalk
dso
- dspace object, e.g. an Item
.public boolean preferList()
preferList
in interface DisseminationCrosswalk
protected DCValue[] site2Metadata(Site site)
site
- The site to derive metadata fromprotected DCValue[] community2Metadata(Community community)
community
- The community to derive metadata fromprotected DCValue[] collection2Metadata(Collection collection)
collection
- The collection to derive metadata fromCopyright © 2016 DuraSpace. All Rights Reserved.