Package er.extensions.eof

Examples of er.extensions.eof.ERXKeyFilter.exclude()


   */
  @GET
  @Path("/company/{company:Company}/employees")
  public WOActionResults employeesAction(@PathParam("company") Company company) {
    ERXKeyFilter personFilter = PersonController.showFilter();
    personFilter.exclude(Person.COMPANY);
    personFilter.include(Person.PETS).includeNone();
    return response(company.employees(), personFilter);
  }

  public WOActionResults indexAction() {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.