Package org.dspace.content.crosswalk
Class SimpleDCDisseminationCrosswalk
java.lang.Object
org.dspace.core.SelfNamedPlugin
org.dspace.content.crosswalk.SimpleDCDisseminationCrosswalk
- All Implemented Interfaces:
DisseminationCrosswalk,NameAwarePlugin
public class SimpleDCDisseminationCrosswalk
extends SelfNamedPlugin
implements DisseminationCrosswalk
Disseminator for Simple Dublin Core metadata in XML format.
Logic stolen from OAIDCCrosswalk. This is mainly intended
as a proof-of-concept, to use crosswalk plugins in the OAI-PMH
server.
- Version:
- $Revision$
- Author:
- Larry Stone
-
Field Summary
FieldsFields inherited from interface org.dspace.content.crosswalk.DisseminationCrosswalk
XSI_NS -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanPredicate: Can this disseminator crosswalk the given object.org.jdom2.ElementdisseminateElement(Context context, DSpaceObject dso) Execute crosswalk, returning one XML root element as a JDOMElementobject.List<org.jdom2.Element>disseminateList(Context context, DSpaceObject dso) Returns object's metadata as XML elements.List<org.jdom2.Element>disseminateListInternal(DSpaceObject dso, boolean addSchema) org.jdom2.Namespace[]Get XML namespaces of the elements this crosswalk may return.static String[]Get the XML Schema location(s) of the target metadata format.booleanPredicate: 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 Details
-
itemService
-
-
Constructor Details
-
SimpleDCDisseminationCrosswalk
public SimpleDCDisseminationCrosswalk()
-
-
Method Details
-
getPluginNames
-
disseminateElement
public org.jdom2.Element disseminateElement(Context context, DSpaceObject dso) throws CrosswalkException, IOException, SQLException, AuthorizeException Description copied from interface:DisseminationCrosswalkExecute crosswalk, returning one XML root element as a JDOMElementobject. This is typically the root element of a document.- Specified by:
disseminateElementin interfaceDisseminationCrosswalk- Parameters:
context- contextdso- the DSpace Object whose metadata to export.- Returns:
- root Element of the target metadata, never
null - Throws:
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
-
disseminateList
public List<org.jdom2.Element> disseminateList(Context context, DSpaceObject dso) throws CrosswalkException, IOException, SQLException, AuthorizeException Returns object's metadata as XML elements. Simple-minded copying of elements: convert contributor.author to "creator" but otherwise just grab element name without qualifier.- Specified by:
disseminateListin interfaceDisseminationCrosswalk- Parameters:
context- contextdso- the DSpace Object whose metadata to export.- Returns:
- List of Elements
- Throws:
CrosswalkException- if crosswalk errorIOException- if IO errorSQLException- if database errorAuthorizeException- if authorization error
-
disseminateListInternal
public List<org.jdom2.Element> disseminateListInternal(DSpaceObject dso, boolean addSchema) throws CrosswalkException, IOException, SQLException, AuthorizeException -
getNamespaces
public org.jdom2.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
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.
-
canDisseminate
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.
-
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().
-