-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
V3.0 develop starting listening enhance & fix console auth invalid pr…
…oblem. (#13001) * Enhance StartingApplicationListener to reduce duplicate operation. * Fix console auth invalid problem.
- Loading branch information
1 parent
8478fd7
commit 05362b0
Showing
64 changed files
with
1,691 additions
and
1,288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
auth/src/main/java/com/alibaba/nacos/auth/config/NacosAuthConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* Copyright 1999-2023 Alibaba Group Holding Ltd. | ||
* | ||
* 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.alibaba.nacos.auth.config; | ||
|
||
/** | ||
* Nacos Auth configurations. | ||
* | ||
* @author xiweng.yy | ||
*/ | ||
public interface NacosAuthConfig { | ||
|
||
/** | ||
* Whether nacos server or console auth enabled. | ||
* | ||
* @return {@code true} means enabled, otherwise {@code false} | ||
*/ | ||
boolean isAuthEnabled(); | ||
|
||
/** | ||
* Get current auth plugin type. | ||
* | ||
* @return auth plugin type. | ||
*/ | ||
String getNacosAuthSystemType(); | ||
|
||
/** | ||
* Whether support server identity to identify request from other nacos servers. | ||
* | ||
* @return {@code true} means supported, otherwise {@code false} | ||
*/ | ||
boolean isSupportServerIdentity(); | ||
|
||
/** | ||
* Get server identity key. | ||
* | ||
* @return server identity key If {@link #isSupportServerIdentity()} return {@code true}, otherwise empty string. | ||
*/ | ||
String getServerIdentityKey(); | ||
|
||
/** | ||
* Get server identity value. | ||
* | ||
* @return server identity value If {@link #isSupportServerIdentity()} return {@code true}, otherwise empty string. | ||
*/ | ||
String getServerIdentityValue(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.