public void destroy() {
}
private String encode( String string ) throws UnsupportedEncodingException {
EncryptionResult result = cryptoService.encryptForCluster(clusterName, EncryptUriDescriptor.PASSWORD_ALIAS, string.getBytes("UTF-8"));
string = Base64.encodeBase64URLSafeString(result.toByteAray());
return string;
}
}