Interface DisseminationCrosswalk
-
- All Known Subinterfaces:
ParameterizedDisseminationCrosswalk
- All Known Implementing Classes:
AIPDIMCrosswalk,AIPTechMDCrosswalk,DIMDisseminationCrosswalk,METSDisseminationCrosswalk,METSRightsCrosswalk,MODSDisseminationCrosswalk,OREDisseminationCrosswalk,PREMISCrosswalk,QDCCrosswalk,RoleCrosswalk,SimpleDCDisseminationCrosswalk,XHTMLHeadDisseminationCrosswalk,XSLTDisseminationCrosswalk
public interface DisseminationCrosswalkDissemination Crosswalk plugin -- translate DSpace native metadata into an external XML format.This interface describes a plugin that produces metadata in an XML-based format from the state of a DSpace object. Note that the object may be an Item, Bitstream, Community, or Collection, although most implementations only work on one type of object.
- Version:
- $Revision$
- Author:
- Larry Stone
-
-
Field Summary
Fields Modifier and Type Field Description static org.jdom2.NamespaceXSI_NSXSI namespace, required for xsi:schemalocation attributes
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancanDisseminate(DSpaceObject dso)Predicate: 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)Execute crosswalk, returning List of XML elements.org.jdom2.Namespace[]getNamespaces()Get XML namespaces of the elements this crosswalk may return.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?
-
-
-
Method Detail
-
getNamespaces
org.jdom2.Namespace[] getNamespaces()
Get XML namespaces of the elements this crosswalk may return. Returns the XML namespaces (as JDOM objects) of the root element.- Returns:
- array of namespaces, which may be empty.
-
getSchemaLocation
String getSchemaLocation()
Get 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.
- Returns:
- SchemaLocation string, including URI namespace, followed by whitespace and URI of XML schema document, or empty string if unknown.
-
canDisseminate
boolean canDisseminate(DSpaceObject dso)
Predicate: Can this disseminator crosswalk the given object. Needed by OAI-PMH server implementation.- Parameters:
dso- dspace object, e.g. anItem.- Returns:
- true when disseminator is capable of producing metadata.
-
preferList
boolean preferList()
Predicate: 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- Returns:
- true when disseminator prefers you call disseminateList().
-
disseminateList
List<org.jdom2.Element> disseminateList(Context context, DSpaceObject dso) throws CrosswalkException, IOException, SQLException, AuthorizeException
Execute crosswalk, returning List of XML elements. Returns aListof JDOMElementobjects representing the XML produced by the crosswalk. This is typically called when a list of fields is desired, e.g. for embedding in a METS documentxmlDatafield.When there are no results, an empty list is returned, but never
null.- Parameters:
context- contextdso- the DSpace Object whose metadata to export.- Returns:
- results of crosswalk as list of XML elements.
- 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
-
disseminateElement
org.jdom2.Element disseminateElement(Context context, DSpaceObject dso) throws CrosswalkException, IOException, SQLException, AuthorizeException
Execute crosswalk, returning one XML root element as a JDOMElementobject. This is typically the root element of a document.- 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
-
-