search api-method without where-param

This commit is contained in:
Peter Hormanns 2014-12-04 15:38:52 +01:00
parent 8c8e9c586e
commit 0c7a4d8ac5

View File

@ -26,6 +26,11 @@ public abstract class AbstractRemote implements IRemote {
protected abstract void map2entity(Transaction tx, Map<String, Object> setParams, AbstractEntity entity) throws HSAdminException;
protected abstract void regularizeKeys(Map<String, String> whereParams);
public List<Map<String, Object>> search(String runAsUser, String ticket) throws HSAdminException {
return search(runAsUser, ticket, new HashMap<String, String>());
}
public List<Map<String, Object>> search(String runAsUser, String ticket,
Map<String, String> whereParams) throws HSAdminException {