Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for oic (0.01 seconds)

  1. CLAUDE.md

    ├── helper/                    # Cross-cutting utilities (~40+ helpers)
    ├── crawler/                   # Crawling engine (processor, transformer, service)
    ├── sso/                       # SSO implementations (oic, saml, spnego, entraid)
    ├── auth/                      # Authentication management
    ├── ldap/                      # LDAP integration
    ├── filter/                    # Servlet filters
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        @Size(max = 10)
        public String searchFileProxy;
    
        /** Enable or disable using browser locale for search. */
        @Size(max = 10)
        public String searchUseBrowserLocale;
    
        /** SSO type (none, oic, saml, spnego, entraid). */
        @Size(max = 100)
        public String ssoType;
    
        /** User agent string for crawling operations. */
        @Size(max = 1000)
        public String crawlingUserAgent;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            fessConfig.setSystemProperty("oic.redirect.url", form.oicRedirectUrl);
            fessConfig.setSystemProperty("oic.scope", form.oicScope);
            fessConfig.setSystemProperty("oic.base.url", form.oicBaseUrl);
            fessConfig.setSystemProperty("oic.default.groups", form.oicDefaultGroups);
            fessConfig.setSystemProperty("oic.default.roles", form.oicDefaultRoles);
    
            // SAML
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 05:54:31 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.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.oic;
    
    import java.io.File;
    import java.io.IOException;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    import org.codelibs.core.io.FileUtil;
    import org.codelibs.core.misc.DynamicProperties;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 11K bytes
    - Click Count (0)
  5. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                                <la:option value="none">None</la:option>
                                                <la:option value="oic">OpenID Connect</la:option>
                                                <la:option value="saml">SAML</la:option>
                                                <la:option value="spnego">SPNEGO</la:option>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 83.1K bytes
    - Click Count (0)
Back to Top