ObjectStore cache is working with StorableObjectEntities
[mir.git] / source / mir / storage / store / StoreUtil.java
index fdebb89..80037da 100755 (executable)
@@ -25,10 +25,11 @@ public final class StoreUtil {
     return null;
   }
 
-  public static final String getEntityListUniqueIdentifierFor(String where, String order,
-    int offset, int limit)
+  public static final String getEntityListUniqueIdentifierFor( String table,
+    String where, String order, int offset, int limit)
   {
-    StringBuffer sb = new StringBuffer("@");
+    StringBuffer sb = new StringBuffer(table);
+    sb.append("@");
     if ( where!=null ) sb.append(where);
     sb.append("@");
     if ( order!=null ) sb.append(order);