Interface OAuthTokenEncrypter
-
public interface OAuthTokenEncrypter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OAuthToken
decrypt(OAuthToken encrypted)
Decrypts the secret parts of the given OAuth access token.OAuthToken
encrypt(OAuthToken unencrypted)
Encrypts the secret parts of the given OAuth access token.
-
-
-
Method Detail
-
encrypt
OAuthToken encrypt(OAuthToken unencrypted)
Encrypts the secret parts of the given OAuth access token.- Parameters:
unencrypted
- a raw OAuth access token.
-
decrypt
OAuthToken decrypt(OAuthToken encrypted)
Decrypts the secret parts of the given OAuth access token.- Parameters:
encrypted
- an encryppted OAuth access token.
-
-