From cc3682641685022d2f0400b30408cf3cb5a0a93d Mon Sep 17 00:00:00 2001
From: ludc
Date: 星期一, 18 十二月 2023 17:31:04 +0800
Subject: [PATCH] 主数据管理:高级查询,状态查询,快速查询,当查询出多页时,点击分页的页码能够保留上一次的查询条件进行分页,点击分类树节点时则置空查询条件。
---
Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/service/IPasswordFreeLoginService.java | 34 +++++++++++++++++++++++++++++++---
1 files changed, 31 insertions(+), 3 deletions(-)
diff --git a/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/service/IPasswordFreeLoginService.java b/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/service/IPasswordFreeLoginService.java
index c202116..8f1409d 100644
--- a/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/service/IPasswordFreeLoginService.java
+++ b/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/service/IPasswordFreeLoginService.java
@@ -1,5 +1,9 @@
package com.vci.ubcs.code.service;
+import org.apache.http.auth.AuthenticationException;
+
+import javax.servlet.ServletRequest;
+
/**
* 鍏嶅瘑鐧诲綍鏈嶅姟
* @author ludc
@@ -8,11 +12,35 @@
public interface IPasswordFreeLoginService {
/**
- * 鍏嶅瘑鐧诲綍鏂规硶
- * @param account 璐﹀彿
+ * 鏍规嵁鏈嶅姟鍚嶈幏鍙栫鍙e彿
+ * @param serviceId
* @return
*/
- boolean passwordFreeLogin(String account);
+ String getGatewayPort(String serviceId);
+ /**
+ * 鍏嶅瘑鐧诲綍锛屾敼鍙樺綋鍓峸ebservice璇锋眰鐨刪eader
+ * @param userName 璐﹀彿
+ * @param servletRequest
+ * @return boolean
+ * @throws AuthenticationException
+ */
+ boolean pwdFreeLoginByBoolean(String userName, ServletRequest servletRequest) throws AuthenticationException;
+
+ /**
+ * 鍏嶅瘑鐧诲綍璇锋眰鍙戦��
+ * @param userName 璐﹀彿
+ * @return 杩斿洖token
+ * @throws AuthenticationException
+ */
+ String passwordFreeLogin(String userName) throws AuthenticationException;
+
+ /**
+ * 鍗曠偣鐧诲綍
+ * @param empCode
+ * @return
+ * @throws Exception
+ */
+ String ssoFreeLogin(String empCode) throws Exception;
}
--
Gitblit v1.9.3