1 21 22 package org.apache.derby.catalog; 23 24 import java.sql.SQLException ; 25 26 41 public interface DependableFinder 42 { 43 51 public Dependable getDependable(UUID dependableObjectID) throws SQLException ; 52 53 62 public Dependable getDependable(String dependableObjectID) throws SQLException ; 63 64 74 public String getSQLObjectType(); 75 76 86 public String getSQLObjectName(String idString) throws SQLException ; 87 88 } 89 | Popular Tags |