public class XHTMLHeadDisseminationCrosswalk extends SelfNamedPlugin implements DisseminationCrosswalk
The configuration file
${dspace.dir}/config/xhtml-head-item.properties contains the
relevant mappings. Note: where there is a custom qualifier for which no
corresponding mapping exists, the crosswalk will remove the qualifier and try
again with just the element.
e.g. if a field exists in the database "dc.contributor.editor", and there is no dc.contributor.editor property below, the mapping for "dc.contributor" will be used. If an element in the item metadata record does not appear in the configuration, it is simply ignored; the emphasis here is on exposing standards-compliant metadata.
TODO: This may usefully be extended later to work with communities and collections.
XSI_NS| Constructor and Description |
|---|
XHTMLHeadDisseminationCrosswalk() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
canDisseminate(DSpaceObject dso)
Predicate: Can this disseminator crosswalk the given object.
|
org.jdom.Element |
disseminateElement(DSpaceObject dso)
This generates a <head> element around the metadata; in general
this will probably not be used
|
List<org.jdom.Element> |
disseminateList(DSpaceObject dso)
Return <meta> elements that can be put in the <head> element
of an XHTML document.
|
org.jdom.Namespace[] |
getNamespaces()
Get XML namespaces of the elements this crosswalk may return.
|
static String[] |
getPluginNames() |
String |
getSchemaLocation()
Get the XML Schema location(s) of the target metadata format.
|
boolean |
preferList()
Predicate: Does this disseminator prefer to return a list of Elements,
rather than a single root Element?
|
getPluginInstanceName, setPluginInstanceNamepublic XHTMLHeadDisseminationCrosswalk()
throws IOException
IOExceptionpublic boolean canDisseminate(DSpaceObject dso)
DisseminationCrosswalkcanDisseminate in interface DisseminationCrosswalkdso - dspace object, e.g. an Item.public org.jdom.Element disseminateElement(DSpaceObject dso) throws CrosswalkException, IOException, SQLException, AuthorizeException
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.IOException - I/O failure in services this callsSQLException - Database failure in services this callsAuthorizeException - current user not authorized for this operation.CrosswalkExceptionpublic 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 callsSQLException - Database failure in services this callsAuthorizeException - current user not authorized for this operation.CrosswalkExceptionpublic 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 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 static String[] getPluginNames()
Copyright © 2014 DuraSpace. All Rights Reserved.