Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getSuppliedWorkstation (0.15 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 Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 8K bytes
    - Viewed (0)
  2. 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 Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Sep 02 12:55:08 UTC 2018
    - 7.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/NtlmTest.java

                assertEquals(suppliedDomain, parsed.getSuppliedDomain());
            }
    
            if ( parsed.getFlag(NtlmFlags.NTLMSSP_NEGOTIATE_OEM_WORKSTATION_SUPPLIED) ) {
                assertEquals(suppliedWorkstation, parsed.getSuppliedWorkstation());
            }
        }
    
    
        @Test
        public void testParsingType2Target () throws IOException {
            int flags = NtlmFlags.NTLMSSP_REQUEST_TARGET;
            String target = "TARGET";
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Dec 16 10:38:43 UTC 2018
    - 4.8K bytes
    - Viewed (0)
Back to top