com.wix.restaurants.authentication.WixRestaurantsAuthenticationClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wix-restaurants-authentication-api Show documentation
Show all versions of wix-restaurants-authentication-api Show documentation
Wix Restaurants Authentication API
package com.wix.restaurants.authentication;
import com.wix.restaurants.authentication.model.LoginResponse;
import com.wix.restaurants.authentication.model.User;
public interface WixRestaurantsAuthenticationClient {
LoginResponse loginWithFacebook(String fbAccessToken);
LoginResponse loginWithOpenrest(String username, String password);
LoginResponse loginWithWixInstance(String instance);
User authenticate(String accessToken);
}