this.inlined = inlined;
}
public static RestCallSpec generateRestCallSpec(
CallPath callPath, Type resourceType, WebContextSpec webContextSpec) {
Builder builder = new RestCallSpec.Builder(callPath, resourceType)
.setWebContextSpec(webContextSpec);
if (callPath.hasVersion()) {
builder.setVersion(callPath.getVersion());
}
return builder.build();
}