public interface TrustedIDEvaluator
Modifier and Type | Method and Description |
---|---|
boolean |
isTrusted(java.lang.String user)
Determine if the user is trusted to assert ID's.
|
boolean |
isTrusted(java.lang.String user,
java.lang.String password)
Determine if the user/password is trusted to assert ID's.
|
boolean |
isTrusted(java.security.cert.X509Certificate[] cert)
Determine if the user associated with the cert chain is trusted
to assert ID's.
|
boolean isTrusted(java.lang.String user)
user
- the userID to perform the authorization check for.true
if the ID is trusted, false
otherwise.boolean isTrusted(java.lang.String user, java.lang.String password)
user
- the userID to perform the authorization check forpassword
- the password for the user.true
if the ID is trusted, false
otherwise.boolean isTrusted(java.security.cert.X509Certificate[] cert)
cert
- the cert chain associated with the usertrue
if the ID is trusted, false
otherwise.