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

24 lines
645 B
Java
Raw Normal View History

2019-10-24 11:26:49 +02:00
package org.gcube.informationsystem.base.impl.properties;
import org.gcube.informationsystem.base.impl.ISManageableImpl;
import org.gcube.informationsystem.base.reference.properties.BaseProperty;
import org.gcube.informationsystem.model.reference.properties.Property;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* @author Luca Frosini (ISTI - CNR)
*/
@JsonTypeName(value=BaseProperty.NAME)
public class BasePropertyImpl extends ISManageableImpl implements Property {
/**
* Generated Serial Version UID
*/
private static final long serialVersionUID = 1396998430221747445L;
public BasePropertyImpl() {
super();
}
}