Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for isso (0.01 sec)

  1. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

    import org.codelibs.fess.app.web.base.login.OpenIdConnectCredential;
    import org.codelibs.fess.crawler.Constants;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.sso.SsoAuthenticator;
    import org.codelibs.fess.sso.SsoResponseType;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalEntity;
    import org.lastaflute.web.login.credential.LoginCredential;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/curl/CurlResponseTest.java

        @Test
        public void testGetContentAsStringWithDifferentEncoding() throws IOException {
            CurlResponse response = new CurlResponse();
            response.setEncoding("ISO-8859-1");
            String testContent = "Hello, World!";
            byte[] data = testContent.getBytes("ISO-8859-1");
            ContentCache cache = new ContentCache(data);
            response.setContentCache(cache);
    
            String content = response.getContentAsString();
    
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Thu Jul 31 01:01:12 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

    import org.codelibs.fess.exception.SsoLoginException;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.sso.SsoAuthenticator;
    import org.codelibs.fess.sso.SsoResponseType;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.spnego.SpnegoFilterConfig;
    import org.codelibs.spnego.SpnegoHttpFilter;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            defaultSettings.put("onelogin.saml2.sp.assertion_consumer_service.url", "http://localhost:8080/sso/");
            defaultSettings.put("onelogin.saml2.sp.assertion_consumer_service.binding", "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST");
            defaultSettings.put("onelogin.saml2.sp.single_logout_service.url", "http://localhost:8080/sso/logout");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.4K bytes
    - Viewed (1)
  5. src/test/java/org/codelibs/fess/helper/OsddHelperTest.java

            assertEquals("test/path/osdd.xml", osddHelper.osddPath);
        }
    
        public void test_setEncoding() {
            final OsddHelper osddHelper = new OsddHelper();
            osddHelper.setEncoding("ISO-8859-1");
            assertEquals("ISO-8859-1", osddHelper.encoding);
        }
    
        public void test_setContentType() {
            final OsddHelper osddHelper = new OsddHelper();
            osddHelper.setContentType("application/xml");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/ComponentUtil.java

         * @return The permission helper.
         */
        public static PermissionHelper getPermissionHelper() {
            return getComponent(PERMISSION_HELPER);
        }
    
        /**
         * Gets the SSO manager component.
         * @return The SSO manager.
         */
        public static SsoManager getSsoManager() {
            return getComponent(SSO_MANAGER);
        }
    
        /**
         * Gets the thumbnail manager component.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/exception/SsoMessageExceptionTest.java

    public class SsoMessageExceptionTest extends UnitFessTestCase {
    
        public void test_constructor_withMessageCodeMessageAndCause() {
            // Setup
            final String message = "Test SSO error message";
            final Exception cause = new RuntimeException("Test cause");
            final VaMessenger<FessMessages> messageCode = messages -> messages.addErrorsSsoLoginError(UserMessages.GLOBAL_PROPERTY_KEY);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/Constants.java

        /** Property key for LTR window size configuration. */
        public static final String LTR_WINDOW_SIZE_PROPERTY = "ltr.window.size";
    
        /** Property key for SSO type configuration. */
        public static final String SSO_TYPE_PROPERTY = "sso.type";
    
        // ============================================================
        // Request and Field Constants
        // ============================================================
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

                return new Date(time);
            } catch (final Exception e) {
                return null;
            }
        }
    
        /**
         * Formats a Date object to ISO datetime string format in UTC timezone.
         *
         * @param date the date to format
         * @return formatted date string, or empty string if date is null
         */
        public static String formatDate(final Date date) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

     * 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 org.codelibs.fess.sso;
    
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.app.web.base.login.FessLoginAssist.LoginCredentialResolver;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.9K bytes
    - Viewed (0)
Back to top