Class WorkgroupQueue.Status
java.lang.Object
org.jivesoftware.smackx.workgroup.agent.WorkgroupQueue.Status
- Enclosing class:
- WorkgroupQueue
A class to represent the status of the workgroup. The possible values are:
- WorkgroupQueue.Status.OPEN -- the queue is active and accepting new chat requests.
- WorkgroupQueue.Status.ACTIVE -- the queue is active but NOT accepting new chat requests.
- WorkgroupQueue.Status.CLOSED -- the queue is NOT active and NOT accepting new chat requests.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final WorkgroupQueue.Status
The queue is active but NOT accepting new chat requests.static final WorkgroupQueue.Status
The queue is NOT active and NOT accepting new chat requests.static final WorkgroupQueue.Status
The queue is active and accepting new chat requests. -
Method Summary
Modifier and TypeMethodDescriptionstatic WorkgroupQueue.Status
fromString
(String type) Converts a String into the corresponding status.toString()
-
Field Details
-
OPEN
The queue is active and accepting new chat requests. -
ACTIVE
The queue is active but NOT accepting new chat requests. This state might occur when the workgroup has closed because regular support hours have closed, but there are still several requests left in the queue. -
CLOSED
The queue is NOT active and NOT accepting new chat requests.
-
-
Method Details