source: other-projects/GlamED/trunk/src/org/honours/actions/ImportCollectionActions.java@ 26588

Last change on this file since 26588 was 26588, checked in by davidb, 11 years ago

Initial import of Korii's 520 project for managing digital cultural collections from Greenstone in Expeditee.

File size: 496 bytes
Line 
1package org.honours.actions;
2
3import org.honours.agents.ImportCollections;
4
5/**
6 * This allows the user to only import
7 * collections from GSDL (or wherever)
8 * into Expeditee. If the user wants to
9 * update a collection then they will need
10 * to use the "Update Collection" option.
11 * @author Korii - 26/08/2012
12 */
13public class ImportCollectionActions {
14
15 public static void ImportCollection(){
16 ImportCollections ic = new ImportCollections();
17 ic.process(null);
18 }
19
20}
Note: See TracBrowser for help on using the repository browser.