Package org.hive2hive.core.processes.implementations.userprofiletask

Examples of org.hive2hive.core.processes.implementations.userprofiletask.HandleUserProfileTaskStep


  public ProcessComponent createUserProfileTaskStep(NetworkManager networkManager) {
    SequentialProcess process = new SequentialProcess();
    UserProfileTaskContext context = new UserProfileTaskContext();
    process.add(new GetUserProfileTaskStep(context, networkManager));
    // Note: this step will add the next steps since it depends on the get result
    process.add(new HandleUserProfileTaskStep(context, networkManager));

    return process;
  }
View Full Code Here

TOP

Related Classes of org.hive2hive.core.processes.implementations.userprofiletask.HandleUserProfileTaskStep

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.