Package org.dspace.app.itemexport
Class ItemExportCLITool
- java.lang.Object
-
- org.dspace.app.itemexport.ItemExportCLITool
-
public class ItemExportCLITool extends Object
Item exporter to create simple AIPs for DSpace content. Currently exports individual items, or entire collections. For instructions on use, see printUsage() method.ItemExport creates the simple AIP package that the importer also uses. It consists of:
/exportdir/42/ (one directory per item) / dublin_core.xml - qualified dublin core in RDF schema / contents - text file, listing one file per line / file1 - files contained in the item / file2 / ...
issues -doesn't handle special characters in metadata (needs to turn
&'sinto&, etc.)Modified by David Little, UCSD Libraries 12/21/04 to allow the registration of files (bitstreams) into DSpace.
- Author:
- David Little, Jay Paz
-
-
Field Summary
Fields Modifier and Type Field Description protected static CollectionServicecollectionServiceprotected static HandleServicehandleServiceprotected static ItemExportServiceitemExportServiceprotected static ItemServiceitemService
-
-
-
Field Detail
-
itemExportService
protected static ItemExportService itemExportService
-
handleService
protected static HandleService handleService
-
itemService
protected static ItemService itemService
-
collectionService
protected static CollectionService collectionService
-
-