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

24 lines
647 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.ElementImpl;
import org.gcube.informationsystem.base.reference.properties.PropertyElement;
2019-10-24 11:26:49 +02:00
import org.gcube.informationsystem.model.reference.properties.Property;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* @author Luca Frosini (ISTI - CNR)
*/
@JsonTypeName(value=PropertyElement.NAME)
public class PropertyElementImpl extends ElementImpl implements Property {
2019-10-24 11:26:49 +02:00
/**
* Generated Serial Version UID
*/
private static final long serialVersionUID = 1396998430221747445L;
public PropertyElementImpl() {
2019-10-24 11:26:49 +02:00
super();
}
}