Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getSuppliedWorkstation (0.07 sec)

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

        }
    
        /**
         * Returns the supplied workstation name.
         *
         * @return A <code>String</code> containing the supplied workstation name.
         */
        public String getSuppliedWorkstation() {
            return suppliedWorkstation;
        }
    
        /**
         * Sets the supplied workstation name for this message.
         *
         * @param suppliedWorkstation The supplied workstation for this message.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/ntlmssp/Type1MessageTest.java

            Type1Message type1 = new Type1Message(mockContext, flags, domain, workstation);
    
            // Then
            assertEquals(domain, type1.getSuppliedDomain());
            assertEquals(workstation, type1.getSuppliedWorkstation());
            assertTrue((type1.getFlags() & NtlmFlags.NTLMSSP_NEGOTIATE_OEM_DOMAIN_SUPPLIED) != 0);
            assertTrue((type1.getFlags() & NtlmFlags.NTLMSSP_NEGOTIATE_OEM_WORKSTATION_SUPPLIED) != 0);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ntlmssp/Type1Message.java

        }
    
        /**
         * Returns the supplied workstation name.
         *
         * @return A <code>String</code> containing the supplied workstation name.
         */
        public String getSuppliedWorkstation() {
            return this.suppliedWorkstation;
        }
    
        /**
         * Sets the supplied workstation name for this message.
         *
         * @param suppliedWorkstation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top