summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/tps/authenticator/AuthenticatorClient.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src/com/netscape/certsrv/tps/authenticator/AuthenticatorClient.java')
-rw-r--r--base/common/src/com/netscape/certsrv/tps/authenticator/AuthenticatorClient.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/common/src/com/netscape/certsrv/tps/authenticator/AuthenticatorClient.java b/base/common/src/com/netscape/certsrv/tps/authenticator/AuthenticatorClient.java
index c9c7b83f3..293c470b7 100644
--- a/base/common/src/com/netscape/certsrv/tps/authenticator/AuthenticatorClient.java
+++ b/base/common/src/com/netscape/certsrv/tps/authenticator/AuthenticatorClient.java
@@ -40,8 +40,8 @@ public class AuthenticatorClient extends Client {
resource = createProxy(AuthenticatorResource.class);
}
- public AuthenticatorCollection findAuthenticators(Integer start, Integer size) {
- Response response = resource.findAuthenticators(start, size);
+ public AuthenticatorCollection findAuthenticators(String filter, Integer start, Integer size) {
+ Response response = resource.findAuthenticators(filter, start, size);
return client.getEntity(response, AuthenticatorCollection.class);
}