public class SimpleDCDisseminationCrosswalk extends SelfNamedPlugin implements DisseminationCrosswalk
XSI_NS| Constructor and Description |
|---|
SimpleDCDisseminationCrosswalk() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
canDisseminate(DSpaceObject dso)
Predicate: Can this disseminator crosswalk the given object.
|
org.jdom.Element |
disseminateElement(DSpaceObject dso)
Execute crosswalk, returning one XML root element as
a JDOM
Element object. |
java.util.List<org.jdom.Element> |
disseminateList(DSpaceObject dso)
Returns object's metadata as XML elements.
|
java.util.List<org.jdom.Element> |
disseminateListInternal(DSpaceObject dso,
boolean addSchema) |
org.jdom.Namespace[] |
getNamespaces()
Get XML namespaces of the elements this crosswalk may return.
|
static java.lang.String[] |
getPluginNames() |
java.lang.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 static java.lang.String[] getPluginNames()
public org.jdom.Element disseminateElement(DSpaceObject dso) throws CrosswalkException, java.io.IOException, java.sql.SQLException, AuthorizeException
DisseminationCrosswalkElement object.
This is typically the root element of a document.
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.java.io.IOException - I/O failure in services this callsjava.sql.SQLException - Database failure in services this callsAuthorizeException - current user not authorized for this operation.CrosswalkExceptionpublic java.util.List<org.jdom.Element> disseminateList(DSpaceObject dso) throws CrosswalkException, java.io.IOException, java.sql.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.java.io.IOException - I/O failure in services this callsjava.sql.SQLException - Database failure in services this callsAuthorizeException - current user not authorized for this operation.CrosswalkExceptionpublic java.util.List<org.jdom.Element> disseminateListInternal(DSpaceObject dso, boolean addSchema) throws CrosswalkException, java.io.IOException, java.sql.SQLException, AuthorizeException
CrosswalkExceptionjava.io.IOExceptionjava.sql.SQLExceptionAuthorizeExceptionpublic org.jdom.Namespace[] getNamespaces()
DisseminationCrosswalkgetNamespaces in interface DisseminationCrosswalkpublic java.lang.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 canDisseminate(DSpaceObject dso)
DisseminationCrosswalkcanDisseminate in interface DisseminationCrosswalkdso - dspace object, e.g. an Item.public 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 DisseminationCrosswalkCopyright © 2018 DuraSpace. All Rights Reserved.