search api-method without where-param
This commit is contained in:
parent
8c8e9c586e
commit
0c7a4d8ac5
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user