public KeyStoreData getKeystoreInfo(String keyStoreName) throws java.lang.Exception {
try {
GetKeystoreInfo request = new GetKeystoreInfo();
request.setKeyStoreName(keyStoreName);
GetKeystoreInfoResponse response = stub.getKeystoreInfo(request);
return response.get_return();
} catch (java.lang.Exception e) {
log.error(e);
throw e;
}
}