information-system-model/src/main/java/org/gcube/informationsystem/model/knowledge/TypeInformation.java

16 lines
373 B
Java
Raw Normal View History

2023-10-26 17:19:01 +02:00
package org.gcube.informationsystem.model.knowledge;
2023-10-24 15:18:48 +02:00
import org.gcube.informationsystem.base.reference.AccessType;
import org.gcube.informationsystem.tree.NodeInformation;
2023-10-26 17:28:35 +02:00
/**
* @author Luca Frosini (ISTI - CNR)
*/
2023-10-26 16:35:03 +02:00
public interface TypeInformation<T> extends NodeInformation<T> {
public AccessType getAccessType(T t);
public T getRoot(AccessType accessType);
2023-10-24 15:18:48 +02:00
}