Package com.codecademy.eventhub.storage.visitor

Examples of com.codecademy.eventhub.storage.visitor.UserFilterVisitor


  public Visitor getFilterVisitor(final int userId) {
    return new DelayedVisitorProxy(new Provider<Visitor>() {
      @Override
      public Visitor get() {
        User user = getUser(userId);
        return new UserFilterVisitor(user);
      }
    });
  }
View Full Code Here

TOP

Related Classes of com.codecademy.eventhub.storage.visitor.UserFilterVisitor

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.