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