1 19 package org.openharmonise.rm.dsi; 20 21 import java.util.*; 22 23 import org.openharmonise.commons.dsi.*; 24 import org.openharmonise.commons.dsi.dml.*; 25 26 27 38 public interface DataStoreObject { 39 40 51 public ColumnRef getInstanceColumnRef(String sColumn, boolean bIsHist) 52 throws DataStoreException; 53 54 66 public JoinConditions getInstanceJoinConditions(String sObjectTag, 67 boolean bIsOuter) 68 throws DataStoreException; 69 70 79 public List processResultSet(CachedResultSet resultSet, SelectStatement select); 80 81 92 public List processResultSet(CachedResultSet resultSet, SelectStatement select, int limit); 93 94 97 public String getDBTableName(); 98 99 102 public int getId(); 103 104 } | Popular Tags |