Trait Endpoint

Source
pub trait Endpoint {
    // Required methods
    fn registrar(&self) -> &(dyn Registrar + Sync);
    fn issuer(&mut self) -> &mut (dyn Issuer + Send);
}

Required Methods§

Source

fn registrar(&self) -> &(dyn Registrar + Sync)

Authenticate the requesting confidential client.

Source

fn issuer(&mut self) -> &mut (dyn Issuer + Send)

Recover and test the provided refresh token then issue new tokens.

Implementors§