Class XHTMLHeadDisseminationCrosswalk
- java.lang.Object
-
- org.dspace.core.SelfNamedPlugin
-
- org.dspace.content.crosswalk.XHTMLHeadDisseminationCrosswalk
-
- All Implemented Interfaces:
DisseminationCrosswalk
public class XHTMLHeadDisseminationCrosswalk extends SelfNamedPlugin implements DisseminationCrosswalk
Crosswalk for creating appropriate <meta> elements to appear in the item display page for a particular item, for improving automated processing of the page (e.g. by search engines). The metadata included should be as rich yet standards-compliant as possible.The configuration file
${dspace.dir}/config/xhtml-head-item.propertiescontains 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.
- Version:
- $Revision$
- Author:
- Robert Tansley
-
-
Field Summary
Fields Modifier and Type Field Description protected ItemServiceitemService-
Fields inherited from interface org.dspace.content.crosswalk.DisseminationCrosswalk
XSI_NS
-
-
Constructor Summary
Constructors Constructor Description XHTMLHeadDisseminationCrosswalk()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanDisseminate(DSpaceObject dso)Predicate: Can this disseminator crosswalk the given object.org.jdom.ElementdisseminateElement(Context context, DSpaceObject dso)This generates a <head> element around the metadata; in general this will probably not be usedList<org.jdom.Element>disseminateList(Context context, 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()StringgetSchemaLocation()Get the XML Schema location(s) of the target metadata format.booleanpreferList()Predicate: Does this disseminator prefer to return a list of Elements, rather than a single root Element?-
Methods inherited from class org.dspace.core.SelfNamedPlugin
getPluginInstanceName, setPluginInstanceName
-
-
-
-
Field Detail
-
itemService
protected final ItemService itemService
-
-
Constructor Detail
-
XHTMLHeadDisseminationCrosswalk
public XHTMLHeadDisseminationCrosswalk() throws IOException- Throws:
IOException
-
-
Method Detail
-
canDisseminate
public boolean canDisseminate(DSpaceObject dso)
Description copied from interface:DisseminationCrosswalkPredicate: Can this disseminator crosswalk the given object. Needed by OAI-PMH server implementation.- Specified by:
canDisseminatein interfaceDisseminationCrosswalk- Parameters:
dso- dspace object, e.g. anItem.- Returns:
- true when disseminator is capable of producing metadata.
-
disseminateElement
public org.jdom.Element disseminateElement(Context context, DSpaceObject dso) throws CrosswalkException, IOException, SQLException, AuthorizeException
This generates a <head> element around the metadata; in general this will probably not be used- Specified by:
disseminateElementin interfaceDisseminationCrosswalk- Parameters:
context- contextdso- the DSpace Object whose metadata to export.- Returns:
- root Element of the target metadata, never
null - Throws:
CrosswalkException- crosswalk errorIOException- if IO errorSQLException- if database errorAuthorizeException- if authorization error
-
disseminateList
public List<org.jdom.Element> disseminateList(Context context, DSpaceObject dso) throws CrosswalkException, IOException, SQLException, AuthorizeException
Return <meta> elements that can be put in the <head> element of an XHTML document.- Specified by:
disseminateListin interfaceDisseminationCrosswalk- Parameters:
context- contextdso- the DSpace Object whose metadata to export.- Returns:
- results of crosswalk as list of XML elements.
- Throws:
CrosswalkException- crosswalk errorIOException- if IO errorSQLException- if database errorAuthorizeException- if authorization error
-
getNamespaces
public org.jdom.Namespace[] getNamespaces()
Description copied from interface:DisseminationCrosswalkGet XML namespaces of the elements this crosswalk may return. Returns the XML namespaces (as JDOM objects) of the root element.- Specified by:
getNamespacesin interfaceDisseminationCrosswalk- Returns:
- array of namespaces, which may be empty.
-
getSchemaLocation
public String getSchemaLocation()
Description copied from interface:DisseminationCrosswalkGet the XML Schema location(s) of the target metadata format. Returns the string value of thexsi:schemaLocationattribute 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.
- Specified by:
getSchemaLocationin interfaceDisseminationCrosswalk- Returns:
- SchemaLocation string, including URI namespace, followed by whitespace and URI of XML schema document, or empty string if unknown.
-
preferList
public boolean preferList()
Description copied from interface:DisseminationCrosswalkPredicate: Does this disseminator prefer to return a list of Elements, rather than a single root Element?Some metadata formats have an XML schema without a root element, for example, the Dublin Core and Qualified Dublin Core formats. This would be
truefor 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 returnfalse- Specified by:
preferListin interfaceDisseminationCrosswalk- Returns:
- true when disseminator prefers you call disseminateList().
-
getPluginNames
public static String[] getPluginNames()
-
-