com.linkedin.restli.restspec.CustomAnnotationContentSchema Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restli-common Show documentation
Show all versions of restli-common Show documentation
Pegasus is a framework for building robust, scalable service architectures using dynamic discovery and simple asychronous type-checked REST + JSON APIs.
package com.linkedin.restli.restspec;
import java.util.List;
import javax.annotation.Generated;
import com.linkedin.data.DataMap;
import com.linkedin.data.schema.PathSpec;
import com.linkedin.data.schema.RecordDataSchema;
import com.linkedin.data.template.DataTemplateUtil;
import com.linkedin.data.template.RecordTemplate;
/**
* Unstructured record that represents arbitrary custom annotations for idl. Actual content is always a map with annotation's overridable member name as key and member value as value
*
*/
@Generated(value = "com.linkedin.pegasus.generator.JavaCodeUtil", comments = "Rest.li Data Template. Generated from /Users/mnchen/dev/pegasus_trunk/pegasus/restli-common/src/main/pegasus/com/linkedin/restli/restspec/CustomAnnotationContentSchema.pdsc.", date = "Tue Oct 03 15:15:24 PDT 2017")
public class CustomAnnotationContentSchema
extends RecordTemplate
{
private final static CustomAnnotationContentSchema.Fields _fields = new CustomAnnotationContentSchema.Fields();
private final static RecordDataSchema SCHEMA = ((RecordDataSchema) DataTemplateUtil.parseSchema("{\"type\":\"record\",\"name\":\"CustomAnnotationContentSchema\",\"namespace\":\"com.linkedin.restli.restspec\",\"doc\":\"Unstructured record that represents arbitrary custom annotations for idl. Actual content is always a map with annotation's overridable member name as key and member value as value\",\"fields\":[]}"));
public CustomAnnotationContentSchema() {
super(new DataMap(), SCHEMA);
}
public CustomAnnotationContentSchema(DataMap data) {
super(data, SCHEMA);
}
public static CustomAnnotationContentSchema.Fields fields() {
return _fields;
}
@Override
public CustomAnnotationContentSchema clone()
throws CloneNotSupportedException
{
return ((CustomAnnotationContentSchema) super.clone());
}
@Override
public CustomAnnotationContentSchema copy()
throws CloneNotSupportedException
{
return ((CustomAnnotationContentSchema) super.copy());
}
public static class Fields
extends PathSpec
{
public Fields(List path, String name) {
super(path, name);
}
public Fields() {
super();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy