information-system-model/src/test/java/org/gcube/informationsystem/type/EntityTest.java

20 lines
420 B
Java

package org.gcube.informationsystem.type;
import org.gcube.informationsystem.model.annotations.ISProperty;
import org.gcube.informationsystem.model.annotations.ISFacet;
@ISFacet(name="mynewtype")
public class EntityTest extends EntityParent {
@ISProperty(nullable=false)
String notnullable;
@ISProperty(mandatory=true)
String mandatory;
@ISProperty(name="different", description="desc")
String myname;
}