xiejun
2024-11-01 0496aed6e04c5084f05ce1035ba9ec38e3d4e9c7
Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/service/IPasswordFreeLoginService.java
@@ -19,10 +19,28 @@
   String getGatewayPort(String serviceId);
   /**
    * 免密登录方法
    * 免密登录,改变当前webservice请求的header
    * @param userName 账号
    * @return
    * @param servletRequest
    * @return boolean
    * @throws AuthenticationException
    */
   boolean passwordFreeLogin(String userName, ServletRequest request) 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;
}