feast.common.auth.config.SecurityProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feast-common Show documentation
Show all versions of feast-common Show documentation
Feast common module with functionality that can be reused
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright 2018-2020 The Feast 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 feast.common.auth.config;
import feast.common.validators.OneOfStrings;
import java.util.Map;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class SecurityProperties {
private AuthenticationProperties authentication;
private AuthorizationProperties authorization;
// Bypass Authentication and Authorization at all HTTP endpoints at /api/v1
private boolean disableRestControllerAuth;
@Getter
@Setter
public static class AuthenticationProperties {
// Enable authentication
private boolean enabled;
// Named authentication provider to use
@OneOfStrings({"jwt"})
private String provider;
// K/V options to initialize the provider with
private Map options;
// Key for Subject Claim option which sets the name of the subject claim field in tokens.
public static final String SUBJECT_CLAIM = "subjectClaim";
}
@Getter
@Setter
public static class AuthorizationProperties {
// Enable authorization. Authentication must be enabled if authorization is enabled.
private boolean enabled;
// Named authorization provider to use.
@OneOfStrings({"none", "http"})
private String provider;
// K/V options to initialize the provider with
private Map options;
}
}