pub trait Endpoint { // Required methods fn registrar(&self) -> &(dyn Registrar + Sync); fn issuer(&mut self) -> &mut (dyn Issuer + Send); }
Authenticate the requesting confidential client.
Recover and test the provided refresh token then issue new tokens.