package org.honours.actions; import org.honours.agents.ImportCollections; /** * This allows the user to only import * collections from GSDL (or wherever) * into Expeditee. If the user wants to * update a collection then they will need * to use the "Update Collection" option. * @author Korii - 26/08/2012 */ public class ImportCollectionActions { public static void ImportCollection(){ ImportCollections ic = new ImportCollections(); ic.process(null); } }