Package org.onebusaway.users.services

Examples of org.onebusaway.users.services.UserPropertiesMigrationStatus


    _canceled = true;
    _executor.shutdownNow();
  }

  public UserPropertiesMigrationStatus getStatus() {
    UserPropertiesMigrationStatus status = new UserPropertiesMigrationStatus();
    status.setCanceled(isCanceled());
    status.setComplete(isComplete());
    status.setNumberOfUsers(getNumberOfUsers());
    status.setNumberOfUsersConverted(getNumberOfUsersConverted());
    status.setNumberOfUsersProcessed(getNumberOfUsersProcessed());
    return status;
  }
View Full Code Here

TOP

Related Classes of org.onebusaway.users.services.UserPropertiesMigrationStatus

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.