|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.dspace.core.SelfNamedPlugin
org.dspace.content.crosswalk.MODSDisseminationCrosswalk
public class MODSDisseminationCrosswalk
Configurable MODS Crosswalk
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.properties
The 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.
| Field Summary | |
|---|---|
static org.jdom.Namespace |
MODS_NS
MODS namespace. |
static String |
MODS_XSD
URL of MODS XML Schema |
| Fields inherited from interface org.dspace.content.crosswalk.DisseminationCrosswalk |
|---|
XSI_NS |
| Constructor Summary | |
|---|---|
MODSDisseminationCrosswalk()
|
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class org.dspace.core.SelfNamedPlugin |
|---|
getPluginInstanceName, setPluginInstanceName |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final org.jdom.Namespace MODS_NS
public static final String MODS_XSD
| Constructor Detail |
|---|
public MODSDisseminationCrosswalk()
| Method Detail |
|---|
public static String[] getPluginNames()
public org.jdom.Namespace[] getNamespaces()
getNamespaces in interface DisseminationCrosswalkpublic String getSchemaLocation()
getSchemaLocation in interface DisseminationCrosswalk
public List<org.jdom.Element> disseminateList(DSpaceObject dso)
throws CrosswalkException,
IOException,
SQLException,
AuthorizeException
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.
IOException - I/O failure in services this calls
SQLException - Database failure in services this calls
AuthorizeException - current user not authorized for this operation.
CrosswalkException
public org.jdom.Element disseminateElement(DSpaceObject dso)
throws CrosswalkException,
IOException,
SQLException,
AuthorizeException
disseminateElement in interface DisseminationCrosswalkdso - 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 calls
SQLException - Database failure in services this calls
AuthorizeException - current user not authorized for this operation.
CrosswalkExceptionpublic boolean canDisseminate(DSpaceObject dso)
canDisseminate in interface DisseminationCrosswalkdso - dspace object, e.g. an Item.
public boolean preferList()
preferList in interface DisseminationCrosswalkprotected 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 fromprotected DCValue[] item2Metadata(Item item)
item - The item to derive metadata from
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||