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

61 lines
1.0 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.SubjectFacet;
/**
* @author Luca Frosini (ISTI - CNR)
*/
@JsonTypeName(value=SubjectFacet.NAME)
public class SubjectFacetImpl extends FacetImpl implements SubjectFacet {
/**
* Generated Serial version UID
*/
private static final long serialVersionUID = -266229852500187672L;
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;
}
}