Package com.changestuffs.shared.actions

Examples of com.changestuffs.shared.actions.IsOnlineResult


  public IsOnlineResult execute(IsOnline action, ExecutionContext context)
      throws ActionException {
    UserBeanOAM oam = provider.get();
    Set<String> emails = new HashSet<String>();
    emails.add(action.getEmail());
    return new IsOnlineResult(oam.getOnline(emails).contains(action.getEmail()));
  }
View Full Code Here

TOP

Related Classes of com.changestuffs.shared.actions.IsOnlineResult

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.