gcube-model/src/main/java/org/gcube/resourcemanagement/model/impl/entities/facets/JSONSchemaFacetImpl.java

42 lines
856 B
Java

/**
*
*/
package org.gcube.resourcemanagement.model.impl.entities.facets;
import org.gcube.com.fasterxml.jackson.annotation.JsonTypeName;
import org.gcube.informationsystem.model.reference.properties.Property;
import org.gcube.resourcemanagement.model.reference.entities.facets.JSONSchemaFacet;
/**
* @author Luca Frosini (ISTI - CNR)
*/
@JsonTypeName(value=JSONSchemaFacet.NAME)
public class JSONSchemaFacetImpl extends SchemaFacetImpl implements JSONSchemaFacet {
/**
* Generated Serial version UID
*/
private static final long serialVersionUID = 2196637871529229113L;
protected Property content;
/**
* @return the content
*/
@Override
public Property getContent() {
return content;
}
/**
* @param content the property to set
*/
@Override
public void setContent(Property content) {
this.content = content;
}
}