Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for setDomain (0.09 sec)

  1. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

         *
         * @return A <code>String</code> containing the domain for the user.
         */
        public String getDomain() {
            return domain;
        }
    
        /**
         * Sets the domain for this message.
         *
         * @param domain The domain.
         */
        public void setDomain(final String domain) {
            this.domain = domain;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/Type3Message.java

         *
         * @return A <code>String</code> containing the domain for the user.
         */
        public String getDomain() {
            return this.domain;
        }
    
        /**
         * Sets the domain for this message.
         *
         * @param domain
         *            The domain.
         */
        public void setDomain(final String domain) {
            this.domain = domain;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java

                    final Map<String, String> map = ParameterUtil.parse(fileAuth.getParameters());
                    final String domain = map.get("domain");
                    smbAuth.setDomain(domain == null ? StringUtil.EMPTY : domain);
                    smbAuth.setServer(fileAuth.getHostname());
                    smbAuth.setPort(fileAuth.getPort() == null ? -1 : fileAuth.getPort());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Apr 03 09:24:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java

        class PropertyTests {
    
            @Test
            @DisplayName("Should get and set domain")
            void testDomain() {
                assertNull(referralData.getDomain());
                referralData.setDomain("EXAMPLE.COM");
                assertEquals("EXAMPLE.COM", referralData.getDomain());
            }
    
            @Test
            @DisplayName("Should get and set link")
            void testLink() {
                assertNull(referralData.getLink());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 30.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java

                            continue;
                        }
    
                        final SmbAuthentication smbAuth = new SmbAuthentication();
                        smbAuth.setDomain(domain == null ? StringUtil.EMPTY : domain);
                        smbAuth.setServer(hostname);
                        if (StringUtil.isNotBlank(port)) {
                            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.DfsReferralData#getDomain()
         */
        @Override
        public String getDomain() {
            return this.domain;
        }
    
        /**
         * Set the domain for this referral
         *
         * @param domain
         *            the domain to set
         */
        public void setDomain(final String domain) {
            this.domain = domain;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

            final Cookie cookie = new Cookie(cookieName, userCode);
            cookie.setMaxAge(age);
            cookie.setHttpOnly(httpOnly);
            if (StringUtil.isNotBlank(cookieDomain)) {
                cookie.setDomain(cookieDomain);
            }
            if (StringUtil.isNotBlank(cookiePath)) {
                cookie.setPath(cookiePath);
            }
            cookie.setSecure(isSecureCookie());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                            }
                            final String domain = fessConfig.getCookieSearchParameterDomain();
                            if (StringUtil.isNotBlank(domain)) {
                                cookie.setDomain(domain);
                            }
                            final String path = fessConfig.getCookieSearchParameterPath();
                            if (StringUtil.isNotBlank(path)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTransportImpl.java

                }
                throw new SmbException(resp.getErrorCode(), null);
            }
    
            if (req.getDomain() != null && getContext().getConfig().isDfsConvertToFQDN() && dr instanceof DfsReferralDataImpl) {
                ((DfsReferralDataImpl) dr).fixupDomain(req.getDomain());
            }
            if (log.isDebugEnabled()) {
                log.debug("Got referral " + dr);
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/RequestWithPathTest.java

        }
    
        @Test
        @DisplayName("Test getDomain returns correct domain")
        void testGetDomain() {
            // Test with mock
            String expectedDomain = "WORKGROUP";
            when(requestWithPath.getDomain()).thenReturn(expectedDomain);
    
            assertEquals(expectedDomain, requestWithPath.getDomain());
            verify(requestWithPath, times(1)).getDomain();
    
            // Test with implementation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.2K bytes
    - Viewed (0)
Back to top