Home | History | Annotate | Download | only in agent

Lines Matching refs:Form

29 import org.jivesoftware.smackx.Form;

33 * A TranscriptSearchManager helps to retrieve the form to use for searching transcripts
34 * {@link #getSearchForm(String)} or to submit a search form and return the results of
35 * the search {@link #submitSearch(String, Form)}.
47 * Returns the Form to use for searching transcripts. It is unlikely that the server
48 * will change the form (without a restart) so it is safe to keep the returned form
52 * @return the Form to use for searching transcripts.
55 public Form getSearchForm(String serviceJID) throws XMPPException {
75 return Form.getFormFrom(response);
79 * Submits the completed form and returns the result of the transcript search. The result
84 * @param completedForm the filled out search form.
88 public ReportedData submitSearch(String serviceJID, Form completedForm) throws XMPPException {