Searched refs:workgroupJID (Results 1 - 8 of 8) sorted by relevance

/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DWorkgroupInformation.java42 private String workgroupJID; field in class:WorkgroupInformation
44 public WorkgroupInformation(String workgroupJID){ argument
45 this.workgroupJID = workgroupJID;
49 return workgroupJID;
77 String workgroupJID = parser.getAttributeValue("", "jid");
83 return new WorkgroupInformation(workgroupJID);
H A DAgentStatus.java52 private String workgroupJID; field in class:AgentStatus
60 return workgroupJID;
90 if (workgroupJID != null) {
91 buf.append(" jid=\"").append(workgroupJID).append("\"");
226 agentStatus.workgroupJID = parser.getAttributeValue("", "jid");
H A DAgentWorkgroups.java87 String workgroupJID = it.next();
88 buf.append("<workgroup jid=\"" + workgroupJID + "\"/>");
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/
H A DAgent.java40 private String workgroupJID; field in class:Agent
65 Agent(Connection connection, String workgroupJID) { argument
67 this.workgroupJID = workgroupJID;
87 agentInfo.setTo(workgroupJID);
119 agentInfo.setTo(workgroupJID);
H A DTranscriptManager.java48 * @param workgroupJID the JID of the workgroup that will process the request.
52 public Transcript getTranscript(String workgroupJID, String sessionID) throws XMPPException { argument
54 request.setTo(workgroupJID);
77 * @param workgroupJID the JID of the workgroup that will process the request.
81 public Transcripts getTranscripts(String workgroupJID, String userID) throws XMPPException { argument
83 request.setTo(workgroupJID);
H A DAgentSession.java59 private String workgroupJID; field in class:AgentSession
85 * @param workgroupJID the fully qualified JID of the workgroup.
87 public AgentSession(String workgroupJID, Connection connection) { argument
93 this.workgroupJID = workgroupJID;
127 agent = new Agent(connection, workgroupJID);
145 agentRoster = new AgentRoster(connection, workgroupJID);
260 presence.setTo(workgroupJID);
264 PacketCollector collector = this.connection.createPacketCollector(new AndFilter(new PacketTypeFilter(Presence.class), new FromContainsFilter(workgroupJID)));
287 presence.setTo(workgroupJID);
[all...]
H A DAgentRoster.java54 private String workgroupJID; field in class:AgentRoster
67 AgentRoster(Connection connection, String workgroupJID) { argument
69 this.workgroupJID = workgroupJID;
82 request.setTo(workgroupJID);
93 request.setTo(workgroupJID);
303 else if (!workgroupJID.equals(agentStatus.getWorkgroupJID())) {
/external/smack/src/org/jivesoftware/smackx/workgroup/user/
H A DWorkgroup.java58 private String workgroupJID; field in class:Workgroup
73 * @param workgroupJID the JID of the workgroup.
77 public Workgroup(String workgroupJID, Connection connection) { argument
83 this.workgroupJID = workgroupJID;
139 return workgroupJID;
159 directedPresence.setTo(workgroupJID);
161 PacketFilter fromFilter = new FromContainsFilter(workgroupJID);
321 throw new IllegalStateException("Already in queue " + workgroupJID);
324 JoinQueuePacket joinPacket = new JoinQueuePacket(workgroupJID, answerFor
[all...]

Completed in 85 milliseconds