param.setPassphrase(DUMMY_PASSWD);
getMyProxyRep().destroy(this.credential, param);
}
public boolean existsUser(String username) {
CredentialInfo info = null;
try {
info = getMyProxyRep().info(this.credential, username, DUMMY_PASSWD);
} catch (MyProxyException e) {
log.error(e.getMessage());
}
if (info == null) {
return false;
}
if (log.isDebugEnabled()) {
log.debug("Got User Info : " + info.toString());
}
return true;
}