return new Action("getAll") {
protected Object doAction(Object... params) {
if(LOG.isDebugEnabled())
LOG.debug("Getting All Auths");
SSLKeyResponse response = new SSLKeyResponse(SSLKeyResponse.SUCCESS);
Set<String> keyIds = dataManager.getAllKeyIds();
response.getIds().addAll(keyIds);
return response;
}
};
}