edu.internet2.middleware.grouper.app.tableSync.GrouperTableSync Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper Show documentation
Show all versions of grouper Show documentation
Internet2 Groups Management Toolkit
/**
* @author mchyzer
* $Id$
*/
package edu.internet2.middleware.grouper.app.tableSync;
import edu.internet2.middleware.grouper.misc.GrouperStartup;
import edu.internet2.middleware.grouperClient.jdbc.tableSync.GcTableSync;
import edu.internet2.middleware.grouperClient.jdbc.tableSync.GcTableSyncOutput;
import edu.internet2.middleware.grouperClient.jdbc.tableSync.GcTableSyncSubtype;
/**
*
*/
public class GrouperTableSync {
/**
*
*/
public GrouperTableSync() {
}
/**
* @param args
*/
public static void main(String[] args) {
GrouperStartup.startup();
GcTableSyncOutput gcTableSyncOutput = new GcTableSync().sync(args[0], GcTableSyncSubtype.valueOfIgnoreCase(args[1], true));
System.out.println(gcTableSyncOutput.toString());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy