Added missing method in interface
This commit is contained in:
parent
769853a113
commit
71e1972aba
|
@ -1,5 +1,8 @@
|
||||||
package org.gcube.informationsystem.base.reference;
|
package org.gcube.informationsystem.base.reference;
|
||||||
|
|
||||||
|
import org.gcube.com.fasterxml.jackson.annotation.JsonIgnore;
|
||||||
|
import org.gcube.informationsystem.types.PropertyTypeName;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Luca Frosini (ISTI - CNR)
|
* @author Luca Frosini (ISTI - CNR)
|
||||||
*/
|
*/
|
||||||
|
@ -27,6 +30,9 @@ public interface Attribute {
|
||||||
|
|
||||||
public void setPropertyType(String type);
|
public void setPropertyType(String type);
|
||||||
|
|
||||||
|
@JsonIgnore
|
||||||
|
public PropertyTypeName getPropertyTypeName();
|
||||||
|
|
||||||
public Object getDefaultValue();
|
public Object getDefaultValue();
|
||||||
|
|
||||||
public void setDefaultValue(Object defaultValue);
|
public void setDefaultValue(Object defaultValue);
|
||||||
|
|
Loading…
Reference in New Issue