// createCred(map="JPS",key="AD_ldap",user="CN=Administrator,CN=Users,DC=alfa,DC=local",password="Welcome02" ,desc="Windows LDAP user")
// exit()
public void retrievePassword(ActionEvent actionEvent) {
try {
CredentialStore store = jpsCtx.getServiceInstance(CredentialStore.class);
PasswordCredential password =
(PasswordCredential)store.getCredential(this.getMap(),
this.getKey());
this.keyUsername = password.getName();
this.keyPassword = new String(password.getPassword());
FacesMessage fm = new FacesMessage("Succes");