kafka OAuthBearerValidationResult 源码
kafka OAuthBearerValidationResult 代码
文件路径:/clients/src/main/java/org/apache/kafka/common/security/oauthbearer/internals/unsecured/OAuthBearerValidationResult.java
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.kafka.common.security.oauthbearer.internals.unsecured;
import java.io.Serializable;
/**
* The result of some kind of token validation
*/
public class OAuthBearerValidationResult implements Serializable {
private static final long serialVersionUID = 5774669940899777373L;
private final boolean success;
private final String failureDescription;
private final String failureScope;
private final String failureOpenIdConfig;
/**
* Return an instance indicating success
*
* @return an instance indicating success
*/
public static OAuthBearerValidationResult newSuccess() {
return new OAuthBearerValidationResult(true, null, null, null);
}
/**
* Return a new validation failure instance
*
* @param failureDescription
* optional description of the failure
* @return a new validation failure instance
*/
public static OAuthBearerValidationResult newFailure(String failureDescription) {
return newFailure(failureDescription, null, null);
}
/**
* Return a new validation failure instance
*
* @param failureDescription
* optional description of the failure
* @param failureScope
* optional scope to be reported with the failure
* @param failureOpenIdConfig
* optional OpenID Connect configuration to be reported with the
* failure
* @return a new validation failure instance
*/
public static OAuthBearerValidationResult newFailure(String failureDescription, String failureScope,
String failureOpenIdConfig) {
return new OAuthBearerValidationResult(false, failureDescription, failureScope, failureOpenIdConfig);
}
private OAuthBearerValidationResult(boolean success, String failureDescription, String failureScope,
String failureOpenIdConfig) {
if (success && (failureScope != null || failureOpenIdConfig != null))
throw new IllegalArgumentException("success was indicated but failure scope/OpenIdConfig were provided");
this.success = success;
this.failureDescription = failureDescription;
this.failureScope = failureScope;
this.failureOpenIdConfig = failureOpenIdConfig;
}
/**
* Return true if this instance indicates success, otherwise false
*
* @return true if this instance indicates success, otherwise false
*/
public boolean success() {
return success;
}
/**
* Return the (potentially null) descriptive message for the failure
*
* @return the (potentially null) descriptive message for the failure
*/
public String failureDescription() {
return failureDescription;
}
/**
* Return the (potentially null) scope to be reported with the failure
*
* @return the (potentially null) scope to be reported with the failure
*/
public String failureScope() {
return failureScope;
}
/**
* Return the (potentially null) OpenID Connect configuration to be reported
* with the failure
*
* @return the (potentially null) OpenID Connect configuration to be reported
* with the failure
*/
public String failureOpenIdConfig() {
return failureOpenIdConfig;
}
/**
* Raise an exception if this instance indicates failure, otherwise do nothing
*
* @throws OAuthBearerIllegalTokenException
* if this instance indicates failure
*/
public void throwExceptionIfFailed() throws OAuthBearerIllegalTokenException {
if (!success())
throw new OAuthBearerIllegalTokenException(this);
}
}
相关信息
相关文章
kafka OAuthBearerConfigException 源码
kafka OAuthBearerIllegalTokenException 源码
kafka OAuthBearerScopeUtils 源码
kafka OAuthBearerUnsecuredJws 源码
kafka OAuthBearerUnsecuredLoginCallbackHandler 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦