Package net.sourceforge.fullsync

Examples of net.sourceforge.fullsync.ActionDecider


  public TaskTree execute(Profile profile, boolean interactive) throws FileSystemException, URISyntaxException, DataParseException, IOException {
    Site d1 = null, d2 = null;

    RuleSet rules = profile.getRuleSet().createRuleSet();

    ActionDecider actionDecider;
    if (profile.getSynchronizationType().equals("Publish/Update")) {
      actionDecider = new PublishActionDecider();
    }
    else if (profile.getSynchronizationType().equals("Publish/Update Overwrite")) {
      actionDecider = new PublishOverwriteActionDecider();
View Full Code Here

TOP

Related Classes of net.sourceforge.fullsync.ActionDecider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.