X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmir%2Fstorage%2Fstore%2FStoreUtil.java;h=80037dabb130a065649d3f8cdbf63c3baab7702c;hb=aa6c03501a1cca8714ce094d566769540045c1ab;hp=fdebb89530515a3da6bba31ee048e6230b0b3280;hpb=cf845a4d2c15935c02fc6c19db571be2502e28af;p=mir.git diff --git a/source/mir/storage/store/StoreUtil.java b/source/mir/storage/store/StoreUtil.java index fdebb895..80037dab 100755 --- a/source/mir/storage/store/StoreUtil.java +++ b/source/mir/storage/store/StoreUtil.java @@ -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);