From 9b4433fddf5b401edb0aace8a404ac733b122702 Mon Sep 17 00:00:00 2001
From: 田源 <tianyuan@vci-tech.com>
Date: 星期四, 03 四月 2025 14:35:02 +0800
Subject: [PATCH] 添加非密字段显示
---
Source/BladeX-Tool/blade-core-secure/src/main/java/org/springblade/core/secure/constant/SecureConstant.java | 71 +++++++++++++++++++++++++++++++++++
1 files changed, 71 insertions(+), 0 deletions(-)
diff --git a/Source/BladeX-Tool/blade-core-secure/src/main/java/org/springblade/core/secure/constant/SecureConstant.java b/Source/BladeX-Tool/blade-core-secure/src/main/java/org/springblade/core/secure/constant/SecureConstant.java
new file mode 100644
index 0000000..7e1c9e7
--- /dev/null
+++ b/Source/BladeX-Tool/blade-core-secure/src/main/java/org/springblade/core/secure/constant/SecureConstant.java
@@ -0,0 +1,71 @@
+/*
+ * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ * Redistributions of source code must retain the above copyright notice,
+ * this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * Neither the name of the dreamlu.net developer nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ * Author: Chill 搴勯獮 (smallchill@163.com)
+ */
+package org.springblade.core.secure.constant;
+
+/**
+ * 鎺堟潈鏍¢獙甯搁噺
+ *
+ * @author Chill
+ */
+public interface SecureConstant {
+
+ /**
+ * 璁よ瘉璇锋眰澶�
+ */
+ String BASIC_HEADER_KEY = "Authorization";
+
+ /**
+ * 璁よ瘉璇锋眰澶村墠缂�
+ */
+ String BASIC_HEADER_PREFIX = "Basic ";
+
+ /**
+ * 璁よ瘉璇锋眰澶村墠缂�
+ */
+ String BASIC_HEADER_PREFIX_EXT = "Basic%20";
+
+ /**
+ * 璁よ瘉璇锋眰澶�
+ */
+ String BASIC_REALM_HEADER_KEY = "WWW-Authenticate";
+
+ /**
+ * 璁よ瘉璇锋眰鍊�
+ */
+ String BASIC_REALM_HEADER_VALUE = "basic realm=\"no auth\"";
+
+ /**
+ * blade_client琛ㄥ瓧娈�
+ */
+ String CLIENT_FIELDS = "client_id, client_secret, access_token_validity, refresh_token_validity";
+
+ /**
+ * blade_client鏌ヨ璇彞
+ */
+ String BASE_STATEMENT = "select " + CLIENT_FIELDS + " from blade_client";
+
+ /**
+ * blade_client鏌ヨ鎺掑簭
+ */
+ String DEFAULT_FIND_STATEMENT = BASE_STATEMENT + " order by client_id";
+
+ /**
+ * 鏌ヨclient_id
+ */
+ String DEFAULT_SELECT_STATEMENT = BASE_STATEMENT + " where client_id = ?";
+
+}
--
Gitblit v1.9.3