/src/main/java/com/google/ie/common/constants/OpenIdConstants.java
http://thoughtsite.googlecode.com/ · Java · 41 lines · 17 code · 4 blank · 20 comment · 0 complexity · e258f2cf6417b49e3b62cf3880f0712f MD5 · raw file
- /* Copyright 2010 Google Inc.
- *
- * 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.google.ie.common.constants;
- /**
- * Constant used for open id authentication
- *
- * @author gmaurya
- *
- */
- public class OpenIdConstants {
- public static final String REQUEST_TOKEN = "request_token";
- public static final String ACCESS_TOKEN = "access_token";
- public static final String ACCESS_TOKEN_SECRET = "access_token_secret";
- public static final String ACCESSOR = "accessor";
- public static final String DISCOVERED = "discovered";
- public static final String OPENID = "openid";
- public static final String SCOPE = "scope";
- public static final String GOOGLE = "google";
- public static final String OAUTH_TEST_END_POINT = "oauthTestEndpoint";
- public static final String EMAIL = "email";
- public static final String USER_IDENTIFIER = "userIdentifier";
- public static final String VIEWER_DISPLAY_NAME = "viewer_display_name";
- public static final String FIRST_NAME = "firstName";
- public static final String LATS_NAME = "lastName";
- }