Examples of PutUserProfileStep


Examples of org.hive2hive.core.processes.implementations.register.PutUserProfileStep

    SequentialProcess process = new SequentialProcess();

    process.add(new CheckIsUserRegisteredStep(credentials.getUserId(), context, dataManager));
    process.add(new LocationsCreationStep(credentials.getUserId(), context));
    process.add(new UserProfileCreationStep(credentials.getUserId(), context));
    process.add(new AsyncComponent(new PutUserProfileStep(credentials, context, dataManager)));
    process.add(new AsyncComponent(new PutUserLocationsStep(context, context, dataManager)));
    process.add(new AsyncComponent(new PutPublicKeyStep(context, dataManager)));

    return process;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.