OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Transcripts
(Results
1 - 4
of
4
) sorted by null
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/
TranscriptManager.java
23
import org.jivesoftware.smackx.workgroup.packet.
Transcripts
;
73
* Returns the
transcripts
of a given user. The answer will contain the complete history of
78
* @return the
transcripts
of a given user.
81
public
Transcripts
getTranscripts(String workgroupJID, String userID) throws XMPPException {
82
Transcripts
request = new
Transcripts
(userID);
88
Transcripts
response = (
Transcripts
) collector.nextResult(SmackConfiguration.getPacketReplyTimeout());
AgentSession.java
453
* Returns the
transcripts
of a given user. The answer will contain the complete history of
457
* @return the
transcripts
of a given user.
460
public
Transcripts
getTranscripts(String userID) throws XMPPException {
476
* Returns the Form to use for searching
transcripts
. It is unlikely that the server
480
* @return the Form to use for searching
transcripts
.
[
all
...]
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
TranscriptsProvider.java
36
* An IQProvider for
transcripts
summaries.
53
List<
Transcripts
.TranscriptSummary> summaries = new ArrayList<
Transcripts
.TranscriptSummary>();
64
if (parser.getName().equals("
transcripts
")) {
70
return new
Transcripts
(userID, summaries);
73
private
Transcripts
.TranscriptSummary parseSummary(XmlPullParser parser) throws IOException,
78
List<
Transcripts
.AgentDetail> agents = new ArrayList<
Transcripts
.AgentDetail>();
105
return new
Transcripts
.TranscriptSummary(sessionID, joinTime, leftTime, agents);
108
private List<
Transcripts
.AgentDetail> parseAgents(XmlPullParser parser) throws IOException, XmlPullParserException {
[
all
...]
Transcripts.java
28
* Represents a list of conversation
transcripts
that a user had in all his history. Each
34
public class
Transcripts
extends IQ {
42
private List<
Transcripts
.TranscriptSummary> summaries;
46
* Creates a
transcripts
request for the given userID.
48
* @param userID the id of the user to get his conversations
transcripts
.
50
public
Transcripts
(String userID) {
52
this.summaries = new ArrayList<
Transcripts
.TranscriptSummary>();
56
* Creates a
Transcripts
which will contain the transcript summaries of the given user.
62
public
Transcripts
(String userID, List<
Transcripts
.TranscriptSummary> summaries) {
[
all
...]
Completed in 100 milliseconds