Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 320 for Romadin (0.84 sec)

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

        private String authMethod;
    
        private boolean handshakeComplete;
    
        static {
            String domain = System.getProperty("http.auth.ntlm.domain");
            if (domain == null) {
                domain = Type3Message.getDefaultDomain();
            }
            DEFAULT_DOMAIN = domain;
        }
    
        /**
         * Creates a new NTLM HTTP URL connection that wraps an existing HTTP connection.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/CredentialsTest.java

        }
    
        @Test
        @DisplayName("Should get user domain")
        void testGetUserDomain() {
            // Given
            String domain = "TESTDOMAIN";
            when(mockCredentials.getUserDomain()).thenReturn(domain);
    
            // When
            String result = mockCredentials.getUserDomain();
    
            // Then
            assertEquals(domain, result);
            verify(mockCredentials).getUserDomain();
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/samr.java

            /** The SAM server handle */
            public rpc.policy_handle handle;
            /** The desired access rights to the domain */
            public int access_mask;
            /** The SID of the domain to open */
            public rpc.sid_t sid;
            /** The returned handle to the domain */
            public rpc.policy_handle domain_handle;
    
            /**
             * Constructs a SamrOpenDomain request.
             *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

            /** The SAM server handle */
            public rpc.policy_handle handle;
            /** The desired access rights to the domain */
            public int access_mask;
            /** The SID of the domain to open */
            public rpc.sid_t sid;
            /** The returned handle to the domain */
            public rpc.policy_handle domain_handle;
    
            /**
             * Constructs a SamrOpenDomain request.
             *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

         */
        @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
        public String getLink() {
            return this.link;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbSession.java

         * Retrieves an NTLM challenge from a domain controller for the configured domain.
         *
         * @return the NTLM challenge from the domain controller
         * @throws SmbException if an SMB error occurs
         * @throws UnknownHostException if the domain controller cannot be resolved
         */
        public static NtlmChallenge getChallengeForDomain() throws SmbException, UnknownHostException {
            if (DOMAIN == null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SID.java

         * <p>
         * Specifically, if the SID has
         * been resolved and it is not a domain SID or builtin account,
         * the full DOMAIN\name form of the account will be
         * returned (e.g. MYDOM\alice or MYDOM\Domain Users).
         * If the SID has been resolved but it is is a domain SID,
         * only the domain name will be returned (e.g. MYDOM).
         * If the SID has been resolved but it is a builtin account,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/pac/PacLogonInfo.java

                // Compute Resource Group IDs with Resource Domain ID to get SIDs
                this.resourceGroupSids = new SID[resourceGroups.length];
                for (int i = 0; i < resourceGroups.length; i++) {
                    this.resourceGroupSids[i] = new SID(resourceDomainId, resourceGroups[i].getId());
                }
    
                // Compute User IDs with Domain ID to get User SIDs
                // First extra is user if userId is empty
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/net/NetServerEnum2.java

         *            the configuration to use
         * @param domain
         *            the domain to enumerate servers in
         * @param serverTypes
         *            the types of servers to enumerate
         */
        public NetServerEnum2(final Configuration config, final String domain, final int serverTypes) {
            super(config, SMB_COM_TRANSACTION, NET_SERVER_ENUM2);
            this.domain = domain;
            this.serverTypes = serverTypes;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java

                final String domain = paramMap.get(CRAWLER_WEB_AUTH + "." + webAuthName + ".domain");
                credentials = new NTCredentials(username, password == null ? StringUtil.EMPTY : password,
                        workstation == null ? StringUtil.EMPTY : workstation, domain == null ? StringUtil.EMPTY : domain);
            } else {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.6K bytes
    - Viewed (0)
Back to top