Class Overview
Implements the SPNEGO NegTokenTarg token
 as specified in RFC 2478
 NegTokenTarg ::= SEQUENCE {
      negResult   [0] ENUMERATED {
              accept_completed        (0),
              accept_incomplete       (1),
              reject                  (2) }   OPTIONAL,
      supportedMech   [1] MechType            OPTIONAL,
      responseToken   [2] OCTET STRING        OPTIONAL,
      mechListMIC     [3] OCTET STRING        OPTIONAL
 }
 MechType::= OBJECT IDENTIFIER
 
Summary
| Fields | 
|---|
    
      
          | public
          static
          
          ObjectIdentifier | OID | The object identifier corresponding to the SPNEGO GSS-API
 mechanism. | 
      
    
| [Expand] Inherited Methods | 
|---|
|  From class
  sun.security.jgss.GSSToken 
  
   
    
    
	 
    
        | final
            static
            
            void | debug(String str) |  
        | final
            static
            
            String | getHexBytes(byte[] bytes, int len) |  
        | final
            static
            
            String | getHexBytes(byte[] bytes) |  
        | final
            static
            
            String | getHexBytes(byte[] bytes, int pos, int len) |  
        | final
            static
            
            int | readBigEndian(byte[] data, int pos, int size) |  
        | final
            static
            
            void | readFully(InputStream is, byte[] buffer, int offset, int len) Blocks till the required number of bytes have been read from the
 input stream. |  
        | final
            static
            
            void | readFully(InputStream is, byte[] buffer) Blocks till the required number of bytes have been read from the
 input stream. |  
        | final
            static
            
            int | readInt(InputStream is) Reads a two byte integer value from an InputStream. |  
        | final
            static
            
            int | readInt(byte[] src, int pos) Reads a two byte integer value from a byte array. |  
        | final
            static
            
            int | readLittleEndian(byte[] data, int pos, int size) Reads an integer value from a byte array in little endian form. |  
        | final
            static
            
            void | writeBigEndian(int value, byte[] array, int pos) |  
        | final
            static
            
            void | writeBigEndian(int value, byte[] array) |  
        | final
            static
            
            int | writeInt(int val, byte[] dest, int pos) Writes a two byte integer value to a byte array. |  
        | final
            static
            
            void | writeInt(int val, OutputStream os) Writes a two byte integer value to a OutputStream. |  
        | final
            static
            
            void | writeLittleEndian(int value, byte[] array, int pos) Copies an integer value to a byte array in little endian form. |  
        | final
            static
            
            void | writeLittleEndian(int value, byte[] array) Copies an integer value to a byte array in little endian form. |  | 
|  From class
  java.lang.Object 
  
   
    
    
	 
    
        | Object | clone() Creates and returns a copy of this object. |  
        | boolean | equals(Object obj) Indicates whether some other object is "equal to" this one. |  
        | void | finalize() Called by the garbage collector on an object when garbage collection
 determines that there are no more references to the object. |  
        | final
            
            
            Class<?> | getClass() Returns the runtime class of this Object. |  
        | int | hashCode() Returns a hash code value for the object. |  
        | final
            
            
            void | notify() Wakes up a single thread that is waiting on this object's
 monitor. |  
        | final
            
            
            void | notifyAll() Wakes up all threads that are waiting on this object's monitor. |  
        | String | toString() Returns a string representation of the object. |  
        | final
            
            
            void | wait() Causes the current thread to wait until another thread invokes the
  notify() method or the
  notifyAll() method for this object. |  
        | final
            
            
            void | wait(long timeout, int nanos) Causes the current thread to wait until another thread invokes the
  notify() method or the
  notifyAll() method for this object, or
 some other thread interrupts the current thread, or a certain
 amount of real time has elapsed. |  
        | final
            
            
            void | wait(long timeout) Causes the current thread to wait until either another thread invokes the
  notify() method or the
  notifyAll() method for this object, or a
 specified amount of time has elapsed. |  | 
 
Fields
 
    
      
        
        
  
      
    
      
  The object identifier corresponding to the SPNEGO GSS-API
 mechanism.
 
 
Public Constructors
 
    
      
        public 
         
         
         
         
        
      
      NegTokenTarg
      (byte[] in)
    
      
    
 
Public Methods
 
    
      
        public 
         
         
         
         
        Oid
      
      getSupportedMech
      ()