public class CK_SESSION_INFO
extends java.lang.Object
PKCS#11 structure:
 typedef struct CK_SESSION_INFO {  
   CK_SLOT_ID slotID;  
   CK_STATE state;  
   CK_FLAGS flags;  
   CK_ULONG ulDeviceError;  
 } CK_SESSION_INFO;
 | Modifier and Type | Field and Description | 
|---|---|
long | 
flags
PKCS#11:
 
   CK_FLAGS flags;
  
 | 
long | 
slotID
PKCS#11:
 
   CK_SLOT_ID slotID;
  
 | 
long | 
state
PKCS#11:
 
   CK_STATE state;
  
 | 
long | 
ulDeviceError
PKCS#11:
 
   CK_ULONG ulDeviceError;
  
 | 
| Constructor and Description | 
|---|
CK_SESSION_INFO()  | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.String | 
toString()
Returns the string representation of CK_SESSION_INFO. 
 |