Interface TokenCanceller
- All Known Implementing Classes:
SCTCanceller
public interface TokenCanceller
An interface that can cancel a security token.
-
Method Summary
Modifier and TypeMethodDescriptioncancelToken(TokenCancellerParameters tokenParameters) Cancel a token given a TokenCancellerParametersbooleancanHandleToken(ReceivedToken cancelTarget) Return true if this TokenCanceller implementation is able to cancel a token that corresponds to the given token.voidsetVerifyProofOfPossession(boolean verifyProofOfPossession) boolean for enabling/disabling verification of proof of possession.
-
Method Details
-
setVerifyProofOfPossession
void setVerifyProofOfPossession(boolean verifyProofOfPossession) boolean for enabling/disabling verification of proof of possession. -
canHandleToken
Return true if this TokenCanceller implementation is able to cancel a token that corresponds to the given token. -
cancelToken
Cancel a token given a TokenCancellerParameters
-