Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for REALM (0.32 sec)

  1. src/main/java/jcifs/smb1/http/NtlmServlet.java

            insecureBasic = Boolean.parseBoolean(Config.getProperty("jcifs.smb1.http.insecureBasic"));
            realm = Config.getProperty("jcifs.smb1.http.basicRealm");
            if (realm == null) {
                realm = "jCIFS";
            }
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/kerberos/KerberosTicket.java

         */
        public String getUserPrincipalName() {
            return this.encData.getUserPrincipalName();
        }
    
        /**
         * Returns the user realm from the ticket.
         *
         * @return the user realm
         */
        public String getUserRealm() {
            return this.encData.getUserRealm();
        }
    
        /**
         * Returns the server principal name from the ticket.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java

            @DisplayName("getUserDomain: explicit realm overrides")
            void getUserDomain_fromExplicitRealm() {
                Kerb5Authenticator auth = new Kerb5Authenticator(new Subject());
                auth.setRealm("REALM.TEST");
                assertEquals("REALM.TEST", auth.getUserDomain());
            }
    
            @Test
            @DisplayName("getUserDomain: falls back to super domain when no realm/subject")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  4. docs/sts/keycloak.md

      - Add this Role into compositive role named `default-roles-{realm}` - `{realm}` should be replaced with whatever realm you created from `prerequisites` section. This role is automatically trusted in the 'Service Accounts' tab.
    
    - Check that `account` client_id has the role 'admin' assigned in the "Service Account Roles" tab.
    
    After that, you will be able to obtain an id_token for the Admin REST API using client_id and client_secret:
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/NtlmServlet.java

                this.insecureBasic = Boolean.parseBoolean(p.getProperty("jcifs.http.insecureBasic"));
                this.realm = p.getProperty("jcifs.http.basicRealm");
                if (this.realm == null) {
                    this.realm = "jCIFS";
                }
    
                this.transportContext = new BaseContext(new PropertyConfiguration(p));
    
            } catch (final CIFSException ex) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.1K bytes
    - Viewed (1)
  6. src/main/java/jcifs/smb/Kerb5Authenticator.java

        }
    
        /**
         * Set the Kerberos realm
         *
         * @param realm
         *            the realm to set
         */
        public void setRealm(String realm) {
            this.realm = realm;
        }
    
        /**
         * Get the Kerberos realm
         *
         * @return the kerberos realm
         */
        public String getRealm() {
            return this.realm;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/http/NetworkExplorer.java

            enableBasic = Config.getBoolean("jcifs.smb1.http.enableBasic", false);
            insecureBasic = Config.getBoolean("jcifs.smb1.http.insecureBasic", false);
            realm = Config.getProperty("jcifs.smb1.http.basicRealm");
            if (realm == null) {
                realm = "jCIFS";
            }
            defaultDomain = Config.getProperty("jcifs.smb1.smb.client.domain");
    
            level = Config.getInt("jcifs.smb1.util.loglevel", -1);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

            insecureBasic = Boolean.parseBoolean(Config.getProperty("jcifs.smb1.http.insecureBasic"));
            realm = Config.getProperty("jcifs.smb1.http.basicRealm");
            if (realm == null) {
                realm = "jCIFS";
            }
    
            level = Config.getInt("jcifs.smb1.util.loglevel", -1);
            if (level != -1) {
                LogStream.setLevel(level);
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java

            final String hostname = paramMap.get(CRAWLER_WEB_AUTH + "." + webAuthName + ".host");
            final String port = paramMap.get(CRAWLER_WEB_AUTH + "." + webAuthName + ".port");
            final String realm = paramMap.get(CRAWLER_WEB_AUTH + "." + webAuthName + ".realm");
            AuthScope authScope;
            if (StringUtil.isBlank(hostname)) {
                authScope = AuthScope.ANY;
            } else {
                int p = AuthScope.ANY_PORT;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

        /**
        * Sent by the server in the Type 2 message to indicate that the
        * target authentication realm is a domain.
        */
        int NTLMSSP_TARGET_TYPE_DOMAIN = 0x00010000;
    
        /**
        * Sent by the server in the Type 2 message to indicate that the
        * target authentication realm is a server.
        */
        int NTLMSSP_TARGET_TYPE_SERVER = 0x00020000;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
Back to top