package com.linkedin.restli.examples.greetings.client; import javax.annotation.Generated; import com.linkedin.restli.client.RestliRequestOptions; import com.linkedin.restli.client.base.GetAllRequestBuilderBase; import com.linkedin.restli.common.ResourceSpec; import com.linkedin.restli.examples.greetings.api.Greeting; /** * This resource method is a variant of the rootAutomaticMetadataManual finder above, except it uses GET_ALL. * This test is to make sure that GET_ALL observes the same code path in restli as FINDER does for projection. * Redundant comments excluded for the sake of brevity. * */ @Generated(value = "com.linkedin.pegasus.generator.JavaCodeUtil", comments = "Rest.li Request Builder", date = "Thu Mar 31 14:16:21 PDT 2016") public class CustomMetadataProjectionsGetAllBuilder extends GetAllRequestBuilderBase<Long, Greeting, CustomMetadataProjectionsGetAllBuilder> { public CustomMetadataProjectionsGetAllBuilder(String baseUriTemplate, ResourceSpec resourceSpec, RestliRequestOptions requestOptions) { super(baseUriTemplate, Greeting.class, resourceSpec, requestOptions); } }