Uses of Class
suncertify.common.ClientNotLoggedInException

Packages that use ClientNotLoggedInException
suncertify.common   
 

Uses of ClientNotLoggedInException in suncertify.common
 

Methods in suncertify.common that throw ClientNotLoggedInException
 int QueryInterfaceImpl.create(java.lang.String[] data, java.lang.String clientId)
          Creates a new record in the database.
 void QueryInterfaceImpl.delete(int recNo, java.lang.String clientId)
          Deletes a record, making the record number and associated disk storage available for reuse.
 int[] QueryInterfaceImpl.find(java.lang.String[] criteria, java.lang.String clientId)
          Returns an array of record numbers that match the specified criteria.
 boolean QueryInterfaceImpl.isLocked(int recNo, java.lang.String clientId)
          Determines if a record is currenly locked.
 void QueryInterfaceImpl.lock(int recNo, java.lang.String clientId)
          Locks a record so that it can only be updated or deleted by this client.
 java.lang.String[] QueryInterfaceImpl.read(int recNo, java.lang.String clientId)
          Reads a record from the file.
 void QueryInterfaceImpl.unlock(int recNo, java.lang.String clientId)
          Releases the lock on a record.
 void QueryInterfaceImpl.update(int recNo, java.lang.String[] data, java.lang.String clientId)
          Modifies the fields of a record.
 void QueryInterfaceImpl.logOut(java.lang.String clientId)
          The method performs client logout - no others connections with such login will be available
 java.lang.String[] QueryInterface.read(int recNo, java.lang.String clientId)
          Reads a record from the file.
 void QueryInterface.update(int recNo, java.lang.String[] data, java.lang.String clientId)
          Modifies the fields of a record.
 void QueryInterface.delete(int recNo, java.lang.String clientId)
          Deletes a record, making the record number and associated disk storage available for reuse.
 int[] QueryInterface.find(java.lang.String[] criteria, java.lang.String clientId)
          Returns an array of record numbers that match the specified criteria.
 int QueryInterface.create(java.lang.String[] data, java.lang.String clientId)
          Creates a new record in the database (possibly reusing a deleted entry).
 void QueryInterface.lock(int recNo, java.lang.String clientId)
          Locks a record so that it can only be updated or deleted by this client.
 void QueryInterface.unlock(int recNo, java.lang.String clientId)
          Releases the lock on a record.
 boolean QueryInterface.isLocked(int recNo, java.lang.String clientId)
          Determines if a record is currenly locked.
 void QueryInterface.logOut(java.lang.String clientId)
          The method performs client logout - no others connections with such login will be available