Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getSuppliedDomain (0.2 sec)

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

            parse(material);
        }
    
        /**
         * Returns the supplied authentication domain.
         *
         * @return A <code>String</code> containing the supplied domain.
         */
        public String getSuppliedDomain() {
            return suppliedDomain;
        }
    
        /**
         * Sets the supplied authentication domain for this message.
         *
         * @param suppliedDomain The supplied domain for this message.
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/Type1Message.java

        }
    
    
        /**
         * Returns the supplied authentication domain.
         *
         * @return A <code>String</code> containing the supplied domain.
         */
        public String getSuppliedDomain () {
            return this.suppliedDomain;
        }
    
    
        /**
         * Sets the supplied authentication domain for this message.
         *
         * @param suppliedDomain
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Sep 02 12:55:08 GMT 2018
    - 7.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/NtlmTest.java

            assertEquals(origFlags, parsed.getFlags());
    
            if ( parsed.getFlag(NtlmFlags.NTLMSSP_NEGOTIATE_OEM_DOMAIN_SUPPLIED) ) {
                assertEquals(suppliedDomain, parsed.getSuppliedDomain());
            }
    
            if ( parsed.getFlag(NtlmFlags.NTLMSSP_NEGOTIATE_OEM_WORKSTATION_SUPPLIED) ) {
                assertEquals(suppliedWorkstation, parsed.getSuppliedWorkstation());
            }
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 16 10:38:43 GMT 2018
    - 4.8K bytes
    - Viewed (0)
Back to top