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

13 lines
322 B
Java
Raw Normal View History

2023-10-24 15:18:48 +02:00
package org.gcube.informationsystem.knowledge;
import org.gcube.informationsystem.base.reference.AccessType;
import org.gcube.informationsystem.tree.NodeInformation;
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
}