Class RequestQueue
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected DBSubsystemstatic org.slf4j.Loggerprotected Stringprotected RequestRepositoryFields inherited from class com.netscape.cmscore.request.ARequestQueue
REQUEST_VERSION -
Constructor Summary
ConstructorsConstructorDescriptionRequestQueue(DBSubsystem dbSubsystem, RequestRepository requestRepository, IPolicy policy, IService service, INotify notifier, INotify pendingNotifier) Create a request queue. -
Method Summary
Modifier and TypeMethodDescriptionvoidapproveRequest(IRequest request) Approves a request.voidcancelRequest(IRequest request) Cancels a request.cloneRequest(IRequest request) Clones a request object.findRequest(RequestId id) Locates a request from the SourceId.Locates all requests with a particular SourceId.protected Enumeration<RequestId> Get complete list of RequestId values found i this queue.Returns an enumerator that lists all RequestIds for requests that are in the given status.voidmarkAsServiced(IRequest request) Marks as serviced after destination authority has serviced request.voidmarkRequestPending(IRequest request) Puts a new request into the PENDING state.voidRecovers from a crash.voidrejectRequest(IRequest request) Rejects a request.voidupdateRequest(IRequest request) Updates the request in the permanent data store.Methods inherited from class com.netscape.cmscore.request.ARequestQueue
cloneAndMarkPending, getPendingNotify, getRequestScheduler, getUserIdentity, listRequests, logChange, processRequest, recover, releaseRequest, setCreationTime, setModificationTime, setRequestScheduler, stateEngine
-
Field Details
-
logger
public static org.slf4j.Logger logger -
dbSubsystem
-
mBaseDN
-
mRepository
-
-
Constructor Details
-
RequestQueue
public RequestQueue(DBSubsystem dbSubsystem, RequestRepository requestRepository, IPolicy policy, IService service, INotify notifier, INotify pendingNotifier) throws EBaseException Create a request queue.- Parameters:
policy- A policy enforcement module. This object is called to make adjustments to the request, and decide whether it needs agent approval.service- The service object. This object actually performs the request after it is finalized and approved.notifier- A notifier object (optional). The notify() method of this object is invoked when the request is completed (COMPLETE, REJECTED or CANCELED states).pendingNotifier- A notifier object (optional). Like the notifier, except the notification happens if the request is made PENDING. May be the same as the 'n' argument if desired.- Throws:
EBaseException- failed to retrieve request queue
-
-
Method Details
-
cloneRequest
Description copied from class:ARequestQueueClones a request object. A new request id is assigned and all attributes of the request is copied to cloned request, except for the sourceID of the original request (remote authority's request Id).The cloned request that is returned is LOCKED. The caller MUST release the request object by calling releaseRequest().
- Specified by:
cloneRequestin classARequestQueue- Parameters:
request- request to be cloned- Returns:
- cloned request
- Throws:
EBaseException- failed to clone request
-
findRequest
- Throws:
EBaseException
-
updateRequest
Description copied from class:ARequestQueueUpdates the request in the permanent data store.This call can be made after changing a value like source id or owner, to force the new value to be written.
The request must be locked to make this call.
- Specified by:
updateRequestin classARequestQueue- Parameters:
request- the request that is being updated- Throws:
EBaseException- failed to update request
-
markRequestPending
Description copied from class:ARequestQueuePuts a new request into the PENDING state. This call is only valid for requests with status BEGIN. An error is generated for other cases.This call might be used by agent servlets that want to copy a previous request, and resubmit it. By putting it into PENDING state, the normal agent screens can be used for further processing.
- Specified by:
markRequestPendingin classARequestQueue- Parameters:
request- the request to mark PENDING- Throws:
EBaseException- failed to mark request as pending
-
cancelRequest
Description copied from class:ARequestQueueCancels a request. The request must be locked.This call will fail if: the request is not in PENDING state
The agent servlet (or other application) may wish to store AgentMessage values to indicate the reason for the action
- Specified by:
cancelRequestin classARequestQueue- Parameters:
request- the request that is being canceled- Throws:
EBaseException- failed to cancel request
-
rejectRequest
Description copied from class:ARequestQueueRejects a request. The request must be locked.This call will fail if: the request is not in PENDING state
The agent servlet (or other application) may wish to store AgentMessage values to indicate the reason for the action
- Specified by:
rejectRequestin classARequestQueue- Parameters:
request- the request that is being rejected- Throws:
EBaseException- failed to reject request
-
approveRequest
Description copied from class:ARequestQueueApproves a request. The request must be locked.This call will fail if: the request is not in PENDING state the policy modules do not accept the request
If the policy modules reject the request, then the request will remain in the PENDING state. Messages from the policy module can be display to the agent to indicate the source of the problem.
The request processing code adds an AgentApproval to this request that contains the authentication id of the agent. This data is retrieved from the Session object (qv).
- Specified by:
approveRequestin classARequestQueue- Parameters:
request- the request that is being approved- Throws:
EBaseException- failed to approve request
-
markAsServiced
Description copied from class:ARequestQueueMarks as serviced after destination authority has serviced request. Used by connector. Caller must lock request and release request.- Specified by:
markAsServicedin classARequestQueue- Parameters:
request- request- Throws:
EBaseException
-
findRequestBySourceId
Description copied from class:ARequestQueueLocates a request from the SourceId.- Specified by:
findRequestBySourceIdin classARequestQueue- Parameters:
id- a unique identifier for the record that is based on the source of the request, and possibly an identify assigned by the source.- Returns:
- The requestid corresponding to this source id. null is returned if the source id does not exist.
-
findRequestsBySourceId
Description copied from class:ARequestQueueLocates all requests with a particular SourceId.- Specified by:
findRequestsBySourceIdin classARequestQueue- Parameters:
id- an identifier for the record that is based on the source of the request- Returns:
- A list of requests corresponding to this source id. null is returned if the source id does not exist.
-
getRawList
Description copied from class:ARequestQueueGet complete list of RequestId values found i this queue.This method can form the basis for creating other types of search/list operations (although there are probably more efficient ways of doing this. ARequestQueue implements default versions of some of the searching by using this method as a basis.
TODO: return IRequestList -or- just use listRequests as the basic engine.
- Specified by:
getRawListin classARequestQueue- Returns:
- an Enumeration that generates RequestId objects.
-
listRequestsByStatus
Description copied from class:ARequestQueueReturns an enumerator that lists all RequestIds for requests that are in the given status. For example, all the PENDING requests could be listed by specifying RequestStatus.PENDING as the status argumentNOTE: This interface will not be useful for large databases. This needs to be replace by a VLV (paged) search object.
Should be overridden by the specialized class if a more efficient method is available for implementing this operation.
- Specified by:
listRequestsByStatusin classARequestQueue- Parameters:
s- request status- Returns:
- request list
-
recoverWillBlock
public void recoverWillBlock()Recovers from a crash. Resends all requests that are in the APPROVED state.- Specified by:
recoverWillBlockin classARequestQueue
-