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

com.google.api.JwtLocationOrBuilder Maven / Gradle / Ivy

There is a newer version: 1.45.6
Show newest version
/*
 * Copyright 2020 Google LLC
 *
 * 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
 *
 *     https://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.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/api/auth.proto

package com.google.api;

public interface JwtLocationOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.api.JwtLocation)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * Specifies HTTP header name to extract JWT token.
   * 
* * string header = 1; * * @return The header. */ java.lang.String getHeader(); /** * * *
   * Specifies HTTP header name to extract JWT token.
   * 
* * string header = 1; * * @return The bytes for header. */ com.google.protobuf.ByteString getHeaderBytes(); /** * * *
   * Specifies URL query parameter name to extract JWT token.
   * 
* * string query = 2; * * @return The query. */ java.lang.String getQuery(); /** * * *
   * Specifies URL query parameter name to extract JWT token.
   * 
* * string query = 2; * * @return The bytes for query. */ com.google.protobuf.ByteString getQueryBytes(); /** * * *
   * The value prefix. The value format is "value_prefix{token}"
   * Only applies to "in" header type. Must be empty for "in" query type.
   * If not empty, the header value has to match (case sensitive) this prefix.
   * If not matched, JWT will not be extracted. If matched, JWT will be
   * extracted after the prefix is removed.
   * For example, for "Authorization: Bearer {JWT}",
   * value_prefix="Bearer " with a space at the end.
   * 
* * string value_prefix = 3; * * @return The valuePrefix. */ java.lang.String getValuePrefix(); /** * * *
   * The value prefix. The value format is "value_prefix{token}"
   * Only applies to "in" header type. Must be empty for "in" query type.
   * If not empty, the header value has to match (case sensitive) this prefix.
   * If not matched, JWT will not be extracted. If matched, JWT will be
   * extracted after the prefix is removed.
   * For example, for "Authorization: Bearer {JWT}",
   * value_prefix="Bearer " with a space at the end.
   * 
* * string value_prefix = 3; * * @return The bytes for valuePrefix. */ com.google.protobuf.ByteString getValuePrefixBytes(); public com.google.api.JwtLocation.InCase getInCase(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy