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

com.snowflake.kafka.connector.internal.OAuthConstants Maven / Gradle / Ivy

There is a newer version: 2.4.1
Show newest version
/*
 * Copyright (c) 2023 Snowflake Inc. All rights reserved.
 *
 * 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.snowflake.kafka.connector.internal;

/**
 * This class contains constants for OAuth request.
 *
 * @see ResourceConstants
 */
public class OAuthConstants {
  public static final String TOKEN_REQUEST_ENDPOINT = "/oauth/token-request";
  public static final String OAUTH_CONTENT_TYPE_HEADER = "application/x-www-form-urlencoded";
  public static final String BASIC_AUTH_HEADER_PREFIX = "Basic ";
  public static final String GRANT_TYPE_PARAM = "grant_type";
  public static final String REFRESH_TOKEN = "refresh_token";
  public static final String ACCESS_TOKEN = "access_token";
  public static final String REDIRECT_URI = "redirect_uri";
  public static final String DEFAULT_REDIRECT_URI = "https://localhost.com/oauth";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy