Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 79 for isso (0.01 sec)

  1. 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)
  2. src/main/resources/fess_sso.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components>
    	<component name="ssoManager" class="org.codelibs.fess.sso.SsoManager">
    	</component>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 16 13:50:30 UTC 2019
    - 256 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/sso/spnego/SpnegoAuthenticatorTest.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.spnego;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class SpnegoAuthenticatorTest extends UnitFessTestCase {
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  6. 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)
  7. src/test/java/org/codelibs/curl/CurlRequestTest.java

            assertSame(proxy, request.proxy());
        }
    
        @Test
        public void testEncodingMethod() {
            CurlRequest request = new CurlRequest(Method.GET, "https://example.com");
            String encoding = "ISO-8859-1";
    
            CurlRequest result = request.encoding(encoding);
    
            assertSame(request, result); // Fluent API
            assertEquals(encoding, request.encoding());
        }
    
        @Test
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Thu Jul 31 01:01:12 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java

         * Maximum length is 10000 characters.
         */
        @Size(max = 10000)
        public String parameterName;
    
        /**
         * The expiration date and time for the access token.
         * Must be in ISO 8601 format: YYYY-MM-DDTHH:MM:SS
         */
        @Pattern(regexp = "[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]T[0-9][0-9]:[0-9][0-9]:[0-9][0-9]")
        public String expires;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/sso/aad/AzureAdAuthenticatorTest.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.aad;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class AzureAdAuthenticatorTest extends UnitFessTestCase {
        public void test_addGroupOrRoleName() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2K bytes
    - Viewed (0)
  10. 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)
Back to top