Package org.hive2hive.core.processes.implementations.common

Examples of org.hive2hive.core.processes.implementations.common.GetUserProfileStep


    LoginProcessContext context = new LoginProcessContext();

    // process composition
    SequentialProcess process = new SequentialProcess();

    process.add(new GetUserProfileStep(credentials, context, dataManager));
    process.add(new SessionCreationStep(params, context, networkManager));
    process.add(new GetUserLocationsStep(credentials.getUserId(), context, networkManager.getDataManager()));
    process.add(new ContactOtherClientsStep(context, networkManager));
    process.add(new PutUserLocationsStep(context, context, dataManager));
    process.add(new SynchronizeFilesStep(context, networkManager));
View Full Code Here

TOP

Related Classes of org.hive2hive.core.processes.implementations.common.GetUserProfileStep

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.