OSID Logo
OSID Specifications
provisioning rules package
Version 3.0.0
Release Candidate Preview
Interfaceosid.provisioning.rules.QueueProcessorForm
Implementsosid.OsidProcessorForm
Description

This is the form for creating and updating QueueProcessors. Like all OsidForm objects, various data elements may be set here for use in the create and update methods in the QueueProcessorAdminSession. For each data element that may be set, metadata may be examined to provide display hints or data constraints.

MethodgetAutomaticMetadata
Description

Gets the metadata for automatic processing.

Returnosid.Metadatametadata for automatic processing
CompliancemandatoryThis method must be implemented.
MethodsetAutomatic
Description

Sets automatic processing.

Parametersbooleanauto true for automatic processing, false for manual processing
ErrorsINVALID_ARGUMENT auto is invalid
NO_ACCESS Metadata.isReadOnly() is true
CompliancemandatoryThis method must be implemented.
MethodclearAutomatic
Description

Removes the automatic processing flag.

ErrorsNO_ACCESS Metadata.isRequired() is true or Metadata.isReadOnly() is true
CompliancemandatoryThis method must be implemented.
MethodgetFifoMetadata
Description

Gets the metadata for first-in-first-out processing.

Returnosid.Metadatametadata for fifo processing
CompliancemandatoryThis method must be implemented.
MethodsetFifo
Description

Sets first-in-first-out processing

Parametersbooleanfifo true for fifo processing, false otherwise
ErrorsINVALID_ARGUMENT fifo is invalid
NO_ACCESS Metadata.isReadOnly() is true
CompliancemandatoryThis method must be implemented.
MethodclearFifo
Description

Removes the fifo flag.

ErrorsNO_ACCESS Metadata.isRequired() is true or Metadata.isReadOnly() is true
CompliancemandatoryThis method must be implemented.
MethodgetRemovesProcessedQueueEntriesMetadata
Description

Gets the metadata for removal of procesed queue entries.

Returnosid.Metadatametadata for removing processed queue entry processing
CompliancemandatoryThis method must be implemented.
MethodsetRemovesProcessedQueueEntries
Description

Sets removal of peocesse queue entry processing

Parametersbooleanremove true for removing processed queue entries, false otherwise
ErrorsINVALID_ARGUMENT remove is invalid
NO_ACCESS Metadata.isReadOnly() is true
CompliancemandatoryThis method must be implemented.
MethodclearRemovesProcessedQueueEntries
Description

Removes the remove processed queue entries flag.

ErrorsNO_ACCESS Metadata.isRequired() is true or Metadata.isReadOnly() is true
CompliancemandatoryThis method must be implemented.
MethodgetQueueProcessorFormRecord
Description

Gets the QueueProcessorFormRecord corresponding to the given queue processor record Type.

Parametersosid.type.TypequeueProcessorRecordTypea queue processor record type
Returnosid.provisioning.rules.records.QueueProcessorFormRecordthe queue processor form record
ErrorsNULL_ARGUMENT queueProcessorRecordType is null
OPERATION_FAILEDunable to complete request
UNSUPPORTED hasRecordType(queueProcessorRecordType) is false
CompliancemandatoryThis method must be implemented.