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));
return process;
}