information-system-model/src/main/java/org/gcube/informationsystem/types/reference/properties/PropertyType.java

61 lines
2.7 KiB
Java
Raw Normal View History

2019-10-24 11:26:49 +02:00
package org.gcube.informationsystem.types.reference.properties;
2019-10-30 09:57:14 +01:00
import java.util.Set;
2020-07-07 17:04:25 +02:00
import org.gcube.com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import org.gcube.com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import org.gcube.informationsystem.base.reference.AccessType;
2020-02-03 10:51:29 +01:00
import org.gcube.informationsystem.base.reference.IdentifiableElement;
import org.gcube.informationsystem.base.reference.properties.PropertyElement;
2020-01-20 10:24:55 +01:00
import org.gcube.informationsystem.model.reference.properties.Header;
2019-10-30 09:57:14 +01:00
import org.gcube.informationsystem.types.annotations.ISProperty;
import org.gcube.informationsystem.types.impl.properties.PropertyTypeImpl;
import org.gcube.informationsystem.types.reference.Change;
2020-02-03 10:51:29 +01:00
import org.gcube.informationsystem.types.reference.Type;
import org.gcube.informationsystem.types.reference.TypeMetadata;
import org.gcube.informationsystem.utils.TypeVersion;
2019-10-24 11:26:49 +02:00
/**
* @author Luca Frosini (ISTI - CNR)
*/
2019-10-24 15:03:14 +02:00
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonDeserialize(as = PropertyTypeImpl.class)
@TypeMetadata(name = PropertyType.NAME, description = "This class provides information for any PropertyType", version = TypeVersion.MINIMAL_VERSION_STRING)
@Change(version = TypeVersion.MINIMAL_VERSION_STRING, description = TypeVersion.MINIMAL_VERSION_DESCRIPTION)
2020-02-03 10:51:29 +01:00
public interface PropertyType<P extends PropertyElement> extends PropertyElement, Type {
2019-10-24 11:26:49 +02:00
public static final String NAME = "PropertyType"; // PropertyTypeDefinition.class.getSimpleName();
2019-10-24 11:26:49 +02:00
2020-02-03 10:51:29 +01:00
@ISProperty(name=IdentifiableElement.HEADER_PROPERTY, mandatory=true, nullable=false)
public Header getHeader();
public void setHeader(Header header);
2019-10-30 09:57:14 +01:00
/* TypeDefinition is just a Java useful class. The type is not created in the IS. Hence the fields must be redefined */
@Override
2020-02-03 10:51:29 +01:00
@ISProperty(name = Type.NAME_PROPERTY, readonly = true, mandatory = true, nullable = false)
2019-10-30 09:57:14 +01:00
public String getName();
@Override
2020-02-03 10:51:29 +01:00
@ISProperty(name = Type.DESCRIPTION_PROPERTY, readonly = false, mandatory = true, nullable = false)
2019-10-30 09:57:14 +01:00
public String getDescription();
@Override
2020-02-03 10:51:29 +01:00
@ISProperty(name = Type.ABSTRACT_PROPERTY, readonly = true, mandatory = true, nullable = false)
2019-10-30 09:57:14 +01:00
public boolean isAbstract();
@Override
2020-02-03 10:51:29 +01:00
@ISProperty(name = Type.TYPE_SUPERCLASSES_PROPERTY, readonly = true, mandatory = true, nullable = false)
2019-10-30 09:57:14 +01:00
public Set<String> getSuperClasses();
2020-01-20 10:24:55 +01:00
2020-02-03 10:57:41 +01:00
@ISProperty(name = Type.PROPERTIES_PROPERTY, readonly = false, mandatory = true, nullable = false)
2019-10-30 09:57:14 +01:00
public Set<PropertyDefinition> getProperties();
/* TypeDefinition is just a Java useful class. The type is not created in the IS. Hence the fields must be redefined */
@Override
public default AccessType getAccessType() {
return AccessType.PROPERTY_ELEMENT;
}
2019-10-24 11:26:49 +02:00
}