/* * Copyright 2010 Nabeel Mukhtar * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package com.github.api.v2.services; import java.util.HashMap; import java.util.Map; import java.util.Set; import com.github.api.v2.schema.ValueEnum; /** * The Interface OAuthService. */ public interface OAuthService extends GitHubService { /** * The Enum Scope. */ public enum Scope implements ValueEnum { /** The USER. */ USER("user"), /** The PUBLI c_ repo. */ PUBLIC_REPO("public_repo"), /** The REPOSITORY. */ REPOSITORY("repo"), /** The GIST. */ GIST("gist"); /** The Constant stringToEnum. */ private static final Map<String, Scope> stringToEnum = new HashMap<String, Scope>(); static { // Initialize map from constant name to enum constant for (Scope op : values()) { stringToEnum.put(op.value(), op); } } /** The value. */ private final String value; /** * Instantiates a new scope. * * @param value * the value */ Scope(String value) { this.value = value; } /* (non-Javadoc) * @see com.github.api.v2.schema.ValueEnum#value() */ @Override public String value() { return value; } /** * From value. * * @param value * the value * * @return the scope */ public static Scope fromValue(String value) { return stringToEnum.get(value); } } /** * Gets the authorization url. * * @param callBackUrl * the call back url * * @return the authorization url */ public String getAuthorizationUrl(String callBackUrl); /** * Gets the authorization url. * * @param callBackUrl * the call back url * @param permissions * the permissions * * @return the authorization url */ public String getAuthorizationUrl(String callBackUrl, Set<Scope> permissions); /** * Gets the access token. * * @param callBackUrl * the call back url * @param code * the code * * @return the access token */ public String getAccessToken(String callBackUrl, String code); }