|
Smack | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jivesoftware.smackx.workgroup.user.Workgroup
public class Workgroup
Provides workgroup services for users. Users can join the workgroup queue, depart the queue, find status information about their placement in the queue, and register to be notified when they are routed to an agent.
This class only provides a users perspective into a workgroup and is not intended for use by agents.
Constructor Summary | |
---|---|
Workgroup(String workgroupJID,
XMPPConnection connection)
Creates a new workgroup instance using the specified workgroup JID (eg support@workgroup.example.com) and XMPP connection. |
Method Summary | |
---|---|
void |
addInvitationListener(WorkgroupInvitationListener invitationListener)
Adds an invitation listener that will be notified of groupchat invitations from the workgroup for the the user that created this Workgroup instance. |
void |
addQueueListener(QueueListener queueListener)
Adds a queue listener that will be notified of queue events for the user that created this Workgroup instance. |
void |
departQueue()
Departs the workgroup queue. |
ChatSetting |
getChatSetting(String key)
Returns a single chat setting based on it's identified key. |
ChatSettings |
getChatSettings()
Returns all ChatSettings. |
ChatSettings |
getChatSettings(int type)
Returns ChatSettings based on type. |
OfflineSettings |
getOfflineSettings()
Asks the workgroup for it's Offline Settings. |
int |
getQueuePosition()
Returns the users current position in the workgroup queue. |
int |
getQueueRemainingTime()
Returns the estimated time (in seconds) that the user has to left wait in the workgroup queue before being routed. |
SoundSettings |
getSoundSettings()
Asks the workgroup for it's Sound Settings. |
Form |
getWorkgroupForm()
Returns the Form to use for all clients of a workgroup. |
String |
getWorkgroupJID()
Returns the name of this workgroup (eg support@example.com). |
WorkgroupProperties |
getWorkgroupProperties()
Asks the workgroup for it's Properties |
WorkgroupProperties |
getWorkgroupProperties(String jid)
Asks the workgroup for it's Properties |
boolean |
isAvailable()
Returns true if the workgroup is available for receiving new requests. |
boolean |
isEmailAvailable()
The workgroup service may be configured to send email. |
boolean |
isInQueue()
Returns true if the user is currently waiting in the workgroup queue. |
void |
joinQueue()
Joins the workgroup queue to wait to be routed to an agent. |
void |
joinQueue(Form answerForm)
Joins the workgroup queue to wait to be routed to an agent. |
void |
joinQueue(Form answerForm,
String userID)
Joins the workgroup queue to wait to be routed to an agent. |
void |
joinQueue(Map metadata,
String userID)
Joins the workgroup queue to wait to be routed to an agent. |
void |
removeQueueListener(QueueListener queueListener)
Removes a queue listener. |
void |
removeQueueListener(WorkgroupInvitationListener invitationListener)
Removes an invitation listener. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Workgroup(String workgroupJID, XMPPConnection connection)
workgroupJID
- the JID of the workgroup.connection
- an XMPP connection which must have already undergone a
successful login.Method Detail |
---|
public String getWorkgroupJID()
public boolean isInQueue()
public boolean isAvailable()
public int getQueuePosition()
public int getQueueRemainingTime()
public void joinQueue() throws XMPPException
departQueue()
method.
A user cannot request to join the queue again if already in the queue. Therefore, this method will throw an IllegalStateException if the user is already in the queue.
Some servers may be configured to require certain meta-data in order to
join the queue. In that case, the joinQueue(Form)
method should be
used instead of this method so that meta-data may be passed in.
The server tracks the conversations that a user has with agents over time. By
default, that tracking is done using the user's JID. However, this is not always
possible. For example, when the user is logged in anonymously using a web client.
In that case the user ID might be a randomly generated value put into a persistent
cookie or a username obtained via the session. A userID can be explicitly
passed in by using the joinQueue(Form, String)
method. When specified,
that userID will be used instead of the user's JID to track conversations. The
server will ignore a manually specified userID if the user's connection to the server
is not anonymous.
XMPPException
- if an error occured joining the queue. An error may indicate
that a connection failure occured or that the server explicitly rejected the
request to join the queue.public void joinQueue(Form answerForm) throws XMPPException
departQueue()
method.
A user cannot request to join the queue again if already in the queue. Therefore, this method will throw an IllegalStateException if the user is already in the queue.
Some servers may be configured to require certain meta-data in order to join the queue.
The server tracks the conversations that a user has with agents over time. By
default, that tracking is done using the user's JID. However, this is not always
possible. For example, when the user is logged in anonymously using a web client.
In that case the user ID might be a randomly generated value put into a persistent
cookie or a username obtained via the session. A userID can be explicitly
passed in by using the joinQueue(Form, String)
method. When specified,
that userID will be used instead of the user's JID to track conversations. The
server will ignore a manually specified userID if the user's connection to the server
is not anonymous.
answerForm
- the completed form the send for the join request.
XMPPException
- if an error occured joining the queue. An error may indicate
that a connection failure occured or that the server explicitly rejected the
request to join the queue.public void joinQueue(Form answerForm, String userID) throws XMPPException
Joins the workgroup queue to wait to be routed to an agent. After joining the queue, queue status events will be sent to indicate the user's position and estimated time left in the queue. Once joining the queue, there are three ways the user can leave the queue:
departQueue()
method.
A user cannot request to join the queue again if already in the queue. Therefore, this method will throw an IllegalStateException if the user is already in the queue.
Some servers may be configured to require certain meta-data in order to join the queue.
The server tracks the conversations that a user has with agents over time. By default, that tracking is done using the user's JID. However, this is not always possible. For example, when the user is logged in anonymously using a web client. In that case the user ID might be a randomly generated value put into a persistent cookie or a username obtained via the session. When specified, that userID will be used instead of the user's JID to track conversations. The server will ignore a manually specified userID if the user's connection to the server is not anonymous.
answerForm
- the completed form associated with the join reqest.userID
- String that represents the ID of the user when using anonymous sessions
or null if a userID should not be used.
XMPPException
- if an error occured joining the queue. An error may indicate
that a connection failure occured or that the server explicitly rejected the
request to join the queue.public void joinQueue(Map metadata, String userID) throws XMPPException
Joins the workgroup queue to wait to be routed to an agent. After joining the queue, queue status events will be sent to indicate the user's position and estimated time left in the queue. Once joining the queue, there are three ways the user can leave the queue:
departQueue()
method.
A user cannot request to join the queue again if already in the queue. Therefore, this method will throw an IllegalStateException if the user is already in the queue.
Some servers may be configured to require certain meta-data in order to join the queue.
The server tracks the conversations that a user has with agents over time. By default, that tracking is done using the user's JID. However, this is not always possible. For example, when the user is logged in anonymously using a web client. In that case the user ID might be a randomly generated value put into a persistent cookie or a username obtained via the session. When specified, that userID will be used instead of the user's JID to track conversations. The server will ignore a manually specified userID if the user's connection to the server is not anonymous.
metadata
- metadata to create a dataform from.userID
- String that represents the ID of the user when using anonymous sessions
or null if a userID should not be used.
XMPPException
- if an error occured joining the queue. An error may indicate
that a connection failure occured or that the server explicitly rejected the
request to join the queue.public void departQueue() throws XMPPException
Normally, the user would not manually leave the queue. However, they may wish to under certain circumstances -- for example, if they no longer wish to be routed to an agent because they've been waiting too long.
XMPPException
- if an error occured trying to send the depart queue
request to the server.public void addQueueListener(QueueListener queueListener)
queueListener
- the queue listener.public void removeQueueListener(QueueListener queueListener)
queueListener
- the queue listener.public void addInvitationListener(WorkgroupInvitationListener invitationListener)
invitationListener
- the invitation listener.public void removeQueueListener(WorkgroupInvitationListener invitationListener)
invitationListener
- the invitation listener.public ChatSetting getChatSetting(String key) throws XMPPException
key
- the key to find.
XMPPException
- if an error occurs while getting information from the server.public ChatSettings getChatSettings(int type) throws XMPPException
type
- the type of ChatSettings to return.
XMPPException
- if an error occurs while getting information from the server.public ChatSettings getChatSettings() throws XMPPException
XMPPException
- if an error occurs while getting information from the server.public boolean isEmailAvailable()
public OfflineSettings getOfflineSettings() throws XMPPException
XMPPException
- if an error occurs while getting information from the server.public SoundSettings getSoundSettings() throws XMPPException
XMPPException
- if an error occurs while getting information from the server.public WorkgroupProperties getWorkgroupProperties() throws XMPPException
XMPPException
- if an error occurs while getting information from the server.public WorkgroupProperties getWorkgroupProperties(String jid) throws XMPPException
jid
- the jid of the user who's information you would like the workgroup to retreive.
XMPPException
- if an error occurs while getting information from the server.public Form getWorkgroupForm() throws XMPPException
XMPPException
- if an error occurs while sending the request to the server.
|
Smack | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |