public class

CK_SESSION_INFO

extends Object
java.lang.Object
   ↳ sun.security.pkcs11.wrapper.CK_SESSION_INFO

Class Overview

class CK_SESSION_INFO provides information about a session.

PKCS#11 structure:

 typedef struct CK_SESSION_INFO {  
   CK_SLOT_ID slotID;  
   CK_STATE state;  
   CK_FLAGS flags;  
   CK_ULONG ulDeviceError;  
 } CK_SESSION_INFO;
 

Summary

Fields
public long flags PKCS#11:
   CK_FLAGS flags;
 
public long slotID PKCS#11:
   CK_SLOT_ID slotID;
 
public long state PKCS#11:
   CK_STATE state;
 
public long ulDeviceError PKCS#11:
   CK_ULONG ulDeviceError;
 
Public Constructors
CK_SESSION_INFO(long slotID, long state, long flags, long ulDeviceError)
Public Methods
String toString()
Returns the string representation of CK_SESSION_INFO.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public long flags

PKCS#11:

   CK_FLAGS flags;
 

public long slotID

PKCS#11:

   CK_SLOT_ID slotID;
 

public long state

PKCS#11:

   CK_STATE state;
 

public long ulDeviceError

PKCS#11:

   CK_ULONG ulDeviceError;
 

Public Constructors

public CK_SESSION_INFO (long slotID, long state, long flags, long ulDeviceError)

Public Methods

public String toString ()

Returns the string representation of CK_SESSION_INFO.

Returns
  • the string representation of CK_SESSION_INFO