package com.dexels.oauth.api; /** * The SideChannel is used to securely transfer a password reset/activation * link to the user (for instance by sending a mail). */ public interface SideChannel { public void secureTransferPasswordResetLink(Client client, String username, String passwordResetLink); public void secureTransferActivationLink(Client client, String username, String activationLink); public void secureInformRegistrationAttempt(Client client, String username); }