Removed wrong classes
This commit is contained in:
parent
bf47e6187f
commit
87c02997d0
|
@ -1,21 +0,0 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
package org.gcube.informationsystem.model.impl.properties;
|
||||
|
||||
import org.gcube.com.fasterxml.jackson.annotation.JsonTypeName;
|
||||
import org.gcube.informationsystem.base.impl.properties.PropertyVariableImpl;
|
||||
import org.gcube.informationsystem.model.reference.properties.AttributeSpecification;
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
@JsonTypeName(value = AttributeSpecification.NAME)
|
||||
public class AttributeSpecificationImpl extends PropertyVariableImpl implements AttributeSpecification {
|
||||
|
||||
/**
|
||||
* Generated Serial Version UID
|
||||
*/
|
||||
private static final long serialVersionUID = -7153079086146339263L;
|
||||
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
package org.gcube.informationsystem.model.reference.properties;
|
||||
|
||||
import org.gcube.com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
||||
import org.gcube.com.fasterxml.jackson.databind.annotation.JsonDeserialize;
|
||||
import org.gcube.informationsystem.base.reference.properties.PropertyVariable;
|
||||
import org.gcube.informationsystem.model.impl.properties.AttributeSpecificationImpl;
|
||||
import org.gcube.informationsystem.types.reference.Change;
|
||||
import org.gcube.informationsystem.types.reference.TypeMetadata;
|
||||
import org.gcube.informationsystem.utils.Version;
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||
@JsonDeserialize(as = AttributeSpecificationImpl.class)
|
||||
@TypeMetadata(name = AttributeSpecification.NAME, description = "This type provides the basic information for the definition of attributes and and variables", version = Version.MINIMAL_VERSION_STRING)
|
||||
@Change(version = Version.MINIMAL_VERSION_STRING, description = Version.MINIMAL_VERSION_DESCRIPTION)
|
||||
public interface AttributeSpecification extends Property, PropertyVariable {
|
||||
|
||||
public static final String NAME = "Variable"; // AttributeSpecification.class.getSimpleName();
|
||||
|
||||
}
|
Loading…
Reference in New Issue