...
Code Block |
---|
AdminClient { //create delegation token with default options public CreateDelegationTokenResult createDelegationToken() //create delegation token with supplied options public abstract CreateDelegationTokenResult createDelegationToken(CreateDelegationTokenOptions options) //renew delegation token with default options public RenewDelegationTokenResult renewDelegationToken(ByteBufferbyte[] hmac) //renew delegation token token with supplied options public abstract RenewDelegationTokenResult renewDelegationToken(ByteBufferbyte[] hmac, RenewDelegationTokenOptions options); //expire delegation token immediately public ExpireDelegationTokenResult expireDelegationToken(ByteBufferbyte[] hmac) //expire delegation token with supplied options public abstract ExpireDelegationTokenResult expireDelegationToken(ByteBufferbyte[] hmac, ExpireDelegationTokenOptions options); //returns all the user owned tokens and other tokens where user have Describe permission public DescribeDelegationTokenResult describeDelegationToken() //returns all the tokens for the given options public abstract DescribeDelegationTokenResult describeDelegationToken(DescribeDelegationTokenOptions options); } |
...