package org.simantics.db.impl; import org.simantics.db.exception.DatabaseException; import org.simantics.db.service.ClusterUID; public interface IClusterTable { T getClusterByClusterUIDOrMakeProxy(ClusterUID clusterUID); T getClusterProxyByResourceKey(int resourceKey); ClusterUID getClusterUIDByResourceKey(int resourceKey) throws DatabaseException; int getClusterKeyByUID(long id1, long id2) throws DatabaseException; }