com.clouway.oauth2.exampleapp.ResourceOwnerAuthentication Maven / Gradle / Ivy
The newest version!
package com.clouway.oauth2.exampleapp;
import com.clouway.oauth2.Session;
import com.google.common.base.Optional;
/**
* @author Ivan Stefanov
*/
public interface ResourceOwnerAuthentication {
Optional auth(String username, String password, String remoteAddress);
}