Java Doc for DisseminationCrosswalk.java in  » Content-Management-System » dspace » org » dspace » content » crosswalk » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Content Management System » dspace » org.dspace.content.crosswalk 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.dspace.content.crosswalk.DisseminationCrosswalk

All known Subclasses:   org.dspace.content.crosswalk.MODSDisseminationCrosswalk,  org.dspace.content.crosswalk.PREMISCrosswalk,  org.dspace.content.crosswalk.QDCCrosswalk,  org.dspace.content.crosswalk.SimpleDCDisseminationCrosswalk,  org.dspace.content.crosswalk.XSLTDisseminationCrosswalk,  org.dspace.content.crosswalk.XHTMLHeadDisseminationCrosswalk,  org.dspace.content.crosswalk.METSDisseminationCrosswalk,
DisseminationCrosswalk
public interface DisseminationCrosswalk (Code)
Dissemination 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.
author:
   Larry Stone
version:
   $Revision: 2108 $



Field Summary
final static  NamespaceXSI_NS
    


Method Summary
public  booleancanDisseminate(DSpaceObject dso)
     Predicate: Can this disseminator crosswalk the given object. Needed by OAI-PMH server implementation.
Parameters:
  dso - dspace object, e.g.
public  ElementdisseminateElement(DSpaceObject dso)
     Execute crosswalk, returning one XML root element as a JDOM Element object. This is typically the root element of a document.


Parameters:
  dso - the DSpace Object whose metadata to export.

public  ListdisseminateList(DSpaceObject dso)
     Execute crosswalk, returning List of XML elements. Returns a List of JDOM Element objects representing the XML produced by the crosswalk.
public  Namespace[]getNamespaces()
     Get XML namespaces of the elements this crosswalk may return.
public  StringgetSchemaLocation()
     Get the XML Schema location(s) of the target metadata format.
public  booleanpreferList()
     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 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.


Field Detail
XSI_NS
final static Namespace XSI_NS(Code)
XSI namespace, required for xsi:schemalocation attributes





Method Detail
canDisseminate
public boolean canDisseminate(DSpaceObject dso)(Code)
Predicate: Can this disseminator crosswalk the given object. Needed by OAI-PMH server implementation.
Parameters:
  dso - dspace object, e.g. an Item. true when disseminator is capable of producing metadata.



disseminateElement
public Element disseminateElement(DSpaceObject dso) throws CrosswalkException, IOException, SQLException, AuthorizeException(Code)
Execute crosswalk, returning one XML root element as a JDOM Element object. This is typically the root element of a document.


Parameters:
  dso - the DSpace Object whose metadata to export. root Element of the target metadata, never null
throws:
  CrosswalkInternalException - (CrosswalkException) failure of the crosswalk itself.
throws:
  CrosswalkObjectNotSupported - (CrosswalkException) Cannot crosswalk this kind of DSpace object.
throws:
  IOException - I/O failure in services this calls
throws:
  SQLException - Database failure in services this calls
throws:
  AuthorizeException - current user not authorized for this operation.




disseminateList
public List disseminateList(DSpaceObject dso) throws CrosswalkException, IOException, SQLException, AuthorizeException(Code)
Execute crosswalk, returning List of XML elements. Returns a List of JDOM Element objects 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 document xmlData field.

When there are no results, an empty list is returned, but never null.
Parameters:
  dso - the DSpace Object whose metadata to export. results of crosswalk as list of XML elements.
throws:
  CrosswalkInternalException - (CrosswalkException) failure of the crosswalk itself.
throws:
  CrosswalkObjectNotSupported - (CrosswalkException) Cannot crosswalk this kind of DSpace object.
throws:
  IOException - I/O failure in services this calls
throws:
  SQLException - Database failure in services this calls
throws:
  AuthorizeException - current user not authorized for this operation.




getNamespaces
public Namespace[] getNamespaces()(Code)
Get XML namespaces of the elements this crosswalk may return. Returns the XML namespaces (as JDOM objects) of the root element. array of namespaces, which may be empty.



getSchemaLocation
public String getSchemaLocation()(Code)
Get the XML Schema location(s) of the target metadata format. Returns the string value of the xsi: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. SchemaLocation string, including URI namespace, followed bywhitespace and URI of XML schema document, or empty string if unknown.




preferList
public boolean preferList()(Code)
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 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 true when disseminator prefers you call disseminateList().




www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.