Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ACCEPT_INCOMPLETE (0.16 sec)

  1. src/test/java/jcifs/spnego/NegTokenTargTest.java

            NegTokenTarg token = new NegTokenTarg();
            token.setResult(NegTokenTarg.ACCEPT_INCOMPLETE);
            // mechanism, token and mic are left null
    
            byte[] bytes = token.toByteArray();
            NegTokenTarg parsed = new NegTokenTarg(bytes);
    
            assertEquals(NegTokenTarg.ACCEPT_INCOMPLETE, parsed.getResult(), "result should be present");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/spnego/NegTokenTarg.java

         */
        public static final int ACCEPT_COMPLETED = 0;
        /**
         * Result code indicating authentication is incomplete and additional tokens required
         */
        public static final int ACCEPT_INCOMPLETE = 1;
        /**
         * Result code indicating authentication was rejected
         */
        public static final int REJECTED = 2;
        /**
         * Result code indicating MIC token is requested
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.9K bytes
    - Viewed (0)
Back to top