All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clouway.oauth2.authorization.ClientAuthorizationRepository Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.clouway.oauth2.authorization;

import com.clouway.oauth2.client.Client;
import com.google.common.base.Optional;

/**
 * @author Ivan Stefanov 
 */
public interface ClientAuthorizationRepository {

  Optional findAuthorization(Client client, String authCode);

  Optional authorize(Client client, String userId, String responseType);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy