Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for UNSPECIFIED_RESULT (0.21 sec)

  1. src/main/java/jcifs/spnego/NegTokenTarg.java

     */
    public class NegTokenTarg extends SpnegoToken {
    
        /**
         * Result code indicating unspecified result
         */
        public static final int UNSPECIFIED_RESULT = -1;
        /**
         * Result code indicating authentication completed successfully
         */
        public static final int ACCEPT_COMPLETED = 0;
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/spnego/NegTokenTargTest.java

        @Test
        @DisplayName("default constructor – unspecified result")
        void testDefaultResult() {
            NegTokenTarg nt = new NegTokenTarg();
            assertEquals(NegTokenTarg.UNSPECIFIED_RESULT, nt.getResult(), "new object should have UNSPECIFIED_RESULT");
        }
    
        @Test
        @DisplayName("serialization omits tags when field is null")
        void testSerializationOmittingNullFields() throws IOException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SpnegoContext.java

                    // this indicates that mechlistMIC is required by the server
                    verifyMechListMIC(targ.getMechanismListMIC());
                    return new NegTokenTarg(NegTokenTarg.UNSPECIFIED_RESULT, null, null, calculateMechListMIC());
                }
                if (targ.getResult() != NegTokenTarg.ACCEPT_COMPLETED) {
                    throw new SmbException("SPNEGO negotiation did not complete");
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.5K bytes
    - Viewed (0)
Back to top