information-system-model/src/test/java/org/gcube/informationsystem/types/EntityParent.java

25 lines
819 B
Java
Raw Normal View History

package org.gcube.informationsystem.types;
import org.gcube.informationsystem.types.annotations.ISProperty;
2020-12-23 15:39:58 +01:00
import org.gcube.informationsystem.types.reference.Change;
import org.gcube.informationsystem.types.reference.TypeMetadata;
2021-10-21 10:11:45 +02:00
import org.gcube.informationsystem.utils.Version;
/**
* @author Luca Frosini (ISTI - CNR)
*/
2021-10-21 10:11:45 +02:00
@TypeMetadata(name = "EntityParent", description = "This is a test Entity", version = Version.MINIMAL_VERSION_STRING)
@Change(version = Version.MINIMAL_VERSION_STRING, description = Version.MINIMAL_VERSION_DESCRIPTION)
public interface EntityParent extends EntityParentParent {
@ISProperty(nullable=false)
public String getNullableP();
@ISProperty(mandatory=false)
public String getMandatoryP();
@ISProperty(name="different", description="desc")
public String getMynameP();
}