information-system-model/src/main/java/org/gcube/informationsystem/model/impl/properties/PropertyImpl.java

27 lines
574 B
Java
Raw Normal View History

/**
*
*/
package org.gcube.informationsystem.model.impl.properties;
import org.gcube.informationsystem.model.impl.ISManageableImpl;
import org.gcube.informationsystem.model.reference.properties.Property;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* @author Luca Frosini (ISTI - CNR)
*
*/
@JsonTypeName(value=Property.NAME)
public class PropertyImpl extends ISManageableImpl implements Property {
/**
* Generated Serial Version UID
*/
private static final long serialVersionUID = 1396998430221747445L;
public PropertyImpl() {
super();
}
}