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

59 lines
1.1 KiB
Java

/**
*
*/
package org.gcube.resourcemanagement.model.impl.entities.facets;
import java.net.URI;
import org.gcube.com.fasterxml.jackson.annotation.JsonTypeName;
import org.gcube.informationsystem.model.impl.entities.FacetImpl;
import org.gcube.resourcemanagement.model.reference.entities.facets.DescriptiveMetadataFacet;
/**
* @author Luca Frosini (ISTI - CNR)
*/
@JsonTypeName(value=DescriptiveMetadataFacet.NAME)
public class DescriptiveMetadataFacetImpl extends FacetImpl implements DescriptiveMetadataFacet {
/**
* Generated Serial version UID
*/
private static final long serialVersionUID = -8373583843673756878L;
protected String value;
protected URI schema;
/**
* @return the value
*/
@Override
public String getValue() {
return value;
}
/**
* @param value the value to set
*/
@Override
public void setValue(String value) {
this.value = value;
}
/**
* @return the schema
*/
@Override
public URI getSchema() {
return schema;
}
/**
* @param schema the schema to set
*/
@Override
public void setSchema(URI schema) {
this.schema = schema;
}
}