Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for smbuser (0.23 seconds)

  1. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            if (user.getFessUser() instanceof SamlUser) {
                return LaRequestUtil.getOptionalRequest().map(request -> {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Logging out with SAML Authenticator");
                    }
                    final HttpServletResponse response = LaResponseUtil.getResponse();
                    final SamlUser samlUser = (SamlUser) user.getFessUser();
                    try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 03:13:33 GMT 2026
    - 20.2K bytes
    - Click Count (3)
  2. tests/test_response_model_as_return_annotation.py

        return [
            DBUser(name="John", surname="Doe", password_hash="secret"),
            DBUser(name="Jane", surname="Does", password_hash="secret2"),
        ]
    
    
    @app.get("/no_response_model-annotation_list_of_model")
    def no_response_model_annotation_list_of_model() -> list[User]:
        return [
            DBUser(name="John", surname="Doe", password_hash="secret"),
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 50.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

        }
    
        // Test full integration scenarios
        @Test
        public void test_fullScenario_ssoEnabled() {
            currentSsoType = "saml";
            final LoginCredential expectedCredential = new TestLoginCredential("samluser");
            final ActionResponse expectedResponse = HtmlResponse.asEmptyBody();
            final String expectedLogoutUrl = "https://saml.example.com/logout";
    
            testAuthenticator.setLoginCredential(expectedCredential);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

            searchLog.setQueryOffset(pageStart);
            searchLog.setQueryPageSize(pageSize);
    
            if (context.userId != null) {
                searchLog.setUser(context.userId);
            }
    
            if (context.request != null) {
                searchLog.setClientIp(StringUtils.abbreviate(context.clientIp, 100));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 29.3K bytes
    - Click Count (0)
Back to Top