Uses of Class
org.apache.jdo.impl.fostore.Status

Packages that use Status
org.apache.jdo.impl.fostore This package contains the implementation of the File/Object Store JDO Reference Implementation (FOStore, pronounced "foster"). 
 

Uses of Status in org.apache.jdo.impl.fostore
 

Fields in org.apache.jdo.impl.fostore declared as Status
private static Status Status.UNKNOWN
          Request is being processed.
(package private) static Status Status.OK
          Request was successfully processed.
(package private) static Status Status.WARN
          Request succeeded, but with warnings.
(package private) static Status Status.ERROR
          Request failed.
(package private) static Status Status.FATAL
          Request failed fatally in server.
(package private) static Status Status.ROLLBACK
          Database rolled back due to user request.
(package private) static Status Status.LOGIN
          Could not login to database.
(package private) static Status Status.OPTIMISTIC
          Optimistic failure.
private  Status Reply.status
           
private  Status DumpHandler.status
          Return status.
 

Methods in org.apache.jdo.impl.fostore that return Status
(package private)  Status Reply.getStatus()
           
 

Methods in org.apache.jdo.impl.fostore with parameters of type Status
 void CreateOIDRequest.handleReply(Status status, java.io.DataInput in, int length)
           
 void Request.handleReply(Status status, java.io.DataInput in, int length)
          Processes the results of the effect of the request in the store.
 void ActivateClassRequest.handleReply(Status status, java.io.DataInput in, int length)
           
 void InsertRequest.handleReply(Status status, java.io.DataInput in, int length)
          Reads the oid, and notifies the persistence manager and state manager of the new oid.
 void UpdateRequest.handleReply(Status status, java.io.DataInput in, int length)
          Handles reply data from an UpdateReply.
 void VerifyRequest.handleReply(Status status, java.io.DataInput in, int length)
          Handles reply data from a VerifyReply.
 void FetchRequest.handleReply(Status status, java.io.DataInput in, int length)
           
 void GetExtentRequest.handleReply(Status status, java.io.DataInput in, int length)
          Handles replies to GetExtentRequests.
 void GetInstancesRequest.handleReply(Status status, java.io.DataInput in, int length)
           
 void DeleteRequest.handleReply(Status status, java.io.DataInput in, int length)
           
 void GetClassRequest.handleReply(Status status, java.io.DataInput in, int length)
           
 void BeginTxRequest.handleReply(Status status, java.io.DataInput in, int length)
           
 void CommitRequest.handleReply(Status status, java.io.DataInput in, int length)
          Handles reply data from a CommitReply.
 void RollbackRequest.handleReply(Status status, java.io.DataInput in, int length)
          This should never be executed.
 void DumpRequest.handleReply(Status status, java.io.DataInput in, int length)
           
(package private)  void Reply.setStatus(Status status)
          Sets the status of this reply.
(package private)  void Reply.setStatus(Status status, java.lang.Throwable t)
          Sets the status of this reply.
(package private)  void Reply.setStatus(Status status, java.lang.String message, java.lang.Throwable t)
          Sets the status of this reply.
(package private)  void Reply.setStatus(Status status, java.lang.String message)
          Sets the status of this reply.
 void LoginRequest.handleReply(Status status, java.io.DataInput in, int length)
          Processes the results of the effect of the request in the store.