Package org.hive2hive.core.processes.implementations.notify

Examples of org.hive2hive.core.processes.implementations.notify.VerifyNotificationFactoryStep


  private ProcessComponent createNotificationProcess(IConsumeNotificationFactory providerContext,
      NetworkManager networkManager) throws IllegalArgumentException, NoPeerConnectionException, NoSessionException {
    NotifyProcessContext context = new NotifyProcessContext(providerContext);

    SequentialProcess process = new SequentialProcess();
    process.add(new VerifyNotificationFactoryStep(context, networkManager.getUserId()));
    process.add(new GetPublicKeysStep(context, networkManager.getSession().getKeyManager()));
    process.add(new PutAllUserProfileTasksStep(context, networkManager));
    process.add(new GetAllLocationsStep(context, networkManager.getDataManager()));
    process.add(new SendNotificationsMessageStep(context, networkManager));
View Full Code Here

TOP

Related Classes of org.hive2hive.core.processes.implementations.notify.VerifyNotificationFactoryStep

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.