com.ibm.wsspi.wssecurity.id

Interface TrustedIDEvaluator

All Superinterfaces:
Initializable

  1. public interface TrustedIDEvaluator
  2. extends Initializable
Evaluates whether the received identity (ID) is trusted. The server issues Credentials only to those identities that are trusted.
See Also:
TrustedIDEvaluatorImpl

Method Summary

Modifier and Type Method and Description
  1. boolean
evaluate(java.lang.String id)
Evaluates whether the received identity (ID) is trusted.
Methods inherited from interface com.ibm.wsspi.wssecurity.Initializable
init

Method Detail

evaluate

  1. boolean evaluate(java.lang.String id)
  2. throws TrustedIDEvaluatorException
Evaluates whether the received identity (ID) is trusted.
Parameters:
id - An ID to be evaluated. A realm name may be specified with a format of "id@realm".
Returns:
true if the ID is trusted, false otherwise.
Throws: