OSID Logo
OSID Specifications
provisioning rules package
Version 3.0.0
Interfaceosid.provisioning.rules.QueueProcessorForm
Implementsosid.OsidProcessorForm
Used Byosid.provisioning.rules.QueueProcessorAdminSession
Description

This is the form for creating and updating QueueProcessors . Like all OsidForms , 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.

Parametersbooleanautotrue for automatic processing, false for manual processing
ErrorsINVALID_ARGUMENTauto is invalid
NO_ACCESSMetadata.isReadOnly() is true
CompliancemandatoryThis method must be implemented.
MethodclearAutomatic
Description

Removes the automatic processing flag.

ErrorsNO_ACCESSMetadata.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

Parametersbooleanfifotrue for fifo processing, false otherwise
ErrorsINVALID_ARGUMENTfifo is invalid
NO_ACCESSMetadata.isReadOnly() is true
CompliancemandatoryThis method must be implemented.
MethodclearFifo
Description

Removes the fifo flag.

ErrorsNO_ACCESSMetadata.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

Parametersbooleanremovetrue for removing processed queue entries, false otherwise
ErrorsINVALID_ARGUMENTremove is invalid
NO_ACCESSMetadata.isReadOnly() is true
CompliancemandatoryThis method must be implemented.
MethodclearRemovesProcessedQueueEntries
Description

Removes the remove processed queue entries flag.

ErrorsNO_ACCESSMetadata.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_ARGUMENTqueueProcessorRecordType is null
OPERATION_FAILEDunable to complete request
UNSUPPORTEDhasRecordType(queueProcessorRecordType) is false
CompliancemandatoryThis method must be implemented.