Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Current state["Under Discussion"]

Discussion thread: here [Change the link from the KIP proposal email archive to your own email thread]

JIRA: KAFKA-6447 

Please keep the discussion on the mailing list rather than commenting on the wiki (wiki discussions get unwieldy fast).

...

Code Block
AdminClient {
	//create delegation token
	public CreateDelegationTokenResult createDelegationToken() 
	public abstract CreateDelegationTokenResult createDelegationToken(CreateDelegationTokenOptions options)
 
    //renew delegation token
	public RenewDelegationTokenResult renewDelegationToken(ByteBuffer hmac)
	public abstract RenewDelegationTokenResult renewDelegationToken(ByteBuffer hmac, RenewDelegationTokenOptions options);
	
    //expire delegation token
	public ExpireDelegationTokenResult expireDelegationToken(ByteBuffer hmac)
	public abstract ExpireDelegationTokenResult expireDelegationToken(ByteBuffer hmac, ExpireDelegationTokenOptions options);
	
    //describe delegation tokens
	public DescribeDelegationTokenResult describeDelegationToken()
	public abstract DescribeDelegationTokenResult describeDelegationToken(DescribeDelegationTokenOptions options);
}

...