Package br.com.caelum.vraptor.restfulie.relation

Examples of br.com.caelum.vraptor.restfulie.relation.DefaultRelationBuilder$Callback


  public String getStatusField() {
    return "status";
  }
 
  public DefaultRelationBuilder relation(String name) {
    DefaultRelationBuilder builder = createBuilderFor(name);
    this.relations.add(builder);
    return builder;
  }
View Full Code Here


  /**
   * Allows the use of different relation builders.
   */
  protected DefaultRelationBuilder createBuilderFor(String name) {
    return new DefaultRelationBuilder(name, routes, proxifier);
  }
View Full Code Here

    this.proxifier = proxifier;
    this.router = router;
  }

  public RelationBuilder newRelationBuilder() {
    return new DefaultRelationBuilder(router, proxifier);
  }
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.restfulie.relation.DefaultRelationBuilder$Callback

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.