Subversion Repository Public Repository

litesoft

Diff Revisions 150 vs 151 for /trunk/Java/core/Server/src/org/litesoft/orsup/base/UnfilteringFinder.java

Diff revisions: vs.
  @@ -25,8 +25,7 @@
25 25 *
26 26 * @throws DBException - Exception regarding the OR layer
27 27 */
28 - public long count( Class<? extends PersistentObject> pPersistedObjectClass,
29 - WhereClause pSelectionWhereClause )
28 + public long count( Class<? extends PersistentObject> pPersistedObjectClass, WhereClause pSelectionWhereClause )
30 29 throws DBException;
31 30
32 31 /**
  @@ -41,9 +40,7 @@
41 40 * @throws UnsupportedOperationException - if the PO type does not support 'snaging'
42 41 * @throws DBException - other Exception regarding the OR layer
43 42 */
44 - public PersistentObject<?> snagOne( String pPersistedObjectRegistrationName,
45 - WhereClause pSelectionWhereClause, OrderBy pOrderBy,
46 - ColumnUpdateValuePair... pUpdateValuePairs )
43 + public PersistentObject<?> snagOne( String pPersistedObjectRegistrationName, WhereClause pSelectionWhereClause, OrderBy pOrderBy, ColumnUpdateValuePair... pUpdateValuePairs )
47 44 throws UnsupportedOperationException, DBException;
48 45
49 46 /**
  @@ -57,8 +54,6 @@
57 54 * @throws UnsupportedOperationException - if the PO type does not support 'snaging'
58 55 * @throws DBException - other Exception regarding the OR layer
59 56 */
60 - public <T extends PersistentObject> T snagOne( Class<T> pPersistedObjectClass,
61 - WhereClause pSelectionWhereClause, OrderBy pOrderBy,
62 - ColumnUpdateValuePair... pUpdateValuePairs )
57 + public <T extends PersistentObject> T snagOne( Class<T> pPersistedObjectClass, WhereClause pSelectionWhereClause, OrderBy pOrderBy, ColumnUpdateValuePair... pUpdateValuePairs )
63 58 throws UnsupportedOperationException, DBException;
64 59 }