com.google.cloud.spring.autoconfigure.security.IapAuthenticationProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-cloud-gcp-autoconfigure Show documentation
Show all versions of spring-cloud-gcp-autoconfigure Show documentation
Spring Framework on Google Cloud
/*
* Copyright 2017-2018 the original author or authors.
*
* 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.
*/
package com.google.cloud.spring.autoconfigure.security;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* Cloud IAP Authentication properties.
*
* @since 1.1
*/
@ConfigurationProperties("spring.cloud.gcp.security.iap")
public class IapAuthenticationProperties {
/** Link to JWK public key registry. */
private String registry = "https://www.gstatic.com/iap/verify/public_key-jwk";
/** Encryption algorithm used to sign the JWK token. */
private String algorithm = "ES256";
/** Header from which to extract the JWK key. */
private String header = "x-goog-iap-jwt-assertion";
/** JWK issuer to verify. */
private String issuer = "https://cloud.google.com/iap";
/** Non-dynamic audience string to validate. */
private String audience;
public String getRegistry() {
return this.registry;
}
public void setRegistry(String registry) {
this.registry = registry;
}
public String getAlgorithm() {
return this.algorithm;
}
public void setAlgorithm(String algorithm) {
this.algorithm = algorithm;
}
public String getHeader() {
return this.header;
}
public void setHeader(String header) {
this.header = header;
}
public String getIssuer() {
return this.issuer;
}
public void setIssuer(String issuer) {
this.issuer = issuer;
}
public String getAudience() {
return this.audience;
}
public void setAudience(String audience) {
this.audience = audience;
}
}