HomeSort by relevance Sort by last modified time
    Searched refs:XMPPException (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/smack/src/org/jivesoftware/smack/
UserAuthentication.java 48 * @throws XMPPException if an error occurs while authenticating.
51 XMPPException;
65 * @throws XMPPException if an error occures while authenticating.
68 XMPPException;
76 * @throws XMPPException if an error occures while authenticating.
78 String authenticateAnonymously() throws XMPPException;
XMPPException.java 37 * is sent to the client an XMPPException will be thrown containing the StreamError sent
43 public class XMPPException extends Exception {
50 * Creates a new XMPPException.
52 public XMPPException() {
57 * Creates a new XMPPException with a description of the exception.
61 public XMPPException(String message) {
66 * Creates a new XMPPException with the Throwable that was the root cause of the
71 public XMPPException(Throwable wrappedThrowable) {
77 * Cretaes a new XMPPException with the stream error that was the root case of the
83 public XMPPException(StreamError streamError)
    [all...]
AccountManager.java 100 catch (XMPPException xe) {
139 catch (XMPPException xe) {
160 catch (XMPPException xe) {
180 catch (XMPPException xe) {
195 * @throws XMPPException if an error occurs creating the account.
197 public void createAccount(String username, String password) throws XMPPException {
199 throw new XMPPException("Server does not support account creation.");
217 * @throws XMPPException if an error occurs creating the account.
221 throws XMPPException
224 throw new XMPPException("Server does not support account creation.")
    [all...]
PrivacyListManager.java 175 * @exception XMPPException if the request or the answer failed, it raises an exception.
177 private Privacy getRequest(Privacy requestPrivacy) throws XMPPException {
198 throw new XMPPException("No response from server.");
201 throw new XMPPException(privacyAnswer.getError());
213 * @exception XMPPException if the request or the answer failed, it raises an exception.
215 private Packet setRequest(Privacy requestPrivacy) throws XMPPException {
236 throw new XMPPException("No response from server.");
238 throw new XMPPException(privacyAnswer.getError());
247 * @throws XMPPException if an error occurs.
249 private Privacy getPrivacyWithListNames() throws XMPPException {
    [all...]
SASLAuthentication.java 214 * @throws XMPPException if an error occures while authenticating.
217 throws XMPPException {
255 throw new XMPPException("SASL authentication " +
259 throw new XMPPException("SASL authentication failed using mechanism " +
271 catch (XMPPException e) {
279 throw new XMPPException("SASL Authentication failed. No known authentication mechanisims.");
281 throw new XMPPException("SASL authentication failed");
296 * @throws XMPPException if an error occures while authenticating.
299 throws XMPPException {
337 throw new XMPPException("SASL authentication " +
    [all...]
NonSASLAuthentication.java 47 public String authenticate(String username, String resource, CallbackHandler cbh) throws XMPPException {
54 throw new XMPPException("Unable to determine password.",e);
59 XMPPException {
73 throw new XMPPException("No response from the server.");
77 throw new XMPPException(response.getError());
95 throw new XMPPException("Server does not support compatible authentication mechanism.");
106 throw new XMPPException("Authentication failed.");
109 throw new XMPPException(response.getError());
117 public String authenticateAnonymously() throws XMPPException {
128 throw new XMPPException("Anonymous login failed.");
    [all...]
AndroidConnectionConfiguration.java 31 public AndroidConnectionConfiguration(String serviceName) throws XMPPException {
40 * @throws XMPPException
42 public AndroidConnectionConfiguration(String serviceName, int timeout) throws XMPPException {
73 * @throws XMPPException
75 private void AndroidInit(String serviceName, int timeout) throws XMPPException {
101 throw new XMPPException("DNS lookup timeout after " + timeout + "ms", e);
106 throw new XMPPException("DNS lookup failure");
  /external/smack/src/org/jivesoftware/smackx/bytestreams/
BytestreamRequest.java 16 import org.jivesoftware.smack.XMPPException;
48 * @throws XMPPException if an error occurred while accepting the bytestream request
52 public BytestreamSession accept() throws XMPPException, InterruptedException;
BytestreamManager.java 18 import org.jivesoftware.smack.XMPPException;
88 * @throws XMPPException if an error occurred while establishing the session
93 public BytestreamSession establishSession(String targetJID) throws XMPPException, IOException,
106 * @throws XMPPException if an error occurred while establishing the session
112 throws XMPPException, IOException, InterruptedException;
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
IncomingFileTransfer.java 22 import org.jivesoftware.smack.XMPPException;
64 * @throws XMPPException If there is an error in the negotiation process an exception
67 public InputStream recieveFile() throws XMPPException {
75 catch (XMPPException e) {
98 * @throws XMPPException when the file transfer fails
102 public void recieveFile(final File file) throws XMPPException {
109 throw new XMPPException(
126 catch (XMPPException e) {
137 catch (XMPPException e) {
172 private void handleXMPPException(XMPPException e) {
    [all...]
  /external/smack/src/org/jivesoftware/smackx/commands/
RemoteCommand.java 26 import org.jivesoftware.smack.XMPPException;
89 public void cancel() throws XMPPException {
94 public void complete(Form form) throws XMPPException {
99 public void execute() throws XMPPException {
106 * there is a problem executing the command it throws an XMPPException.
109 * @throws XMPPException if an error occurs.
111 public void execute(Form form) throws XMPPException {
116 public void next(Form form) throws XMPPException {
121 public void prev() throws XMPPException {
125 private void executeAction(Action action, long packetReplyTimeout) throws XMPPException {
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
Agent.java 27 import org.jivesoftware.smack.XMPPException;
42 public static Collection<String> getWorkgroups(String serviceJID, String agentJID, Connection connection) throws XMPPException {
54 throw new XMPPException("No response from server on status set.");
57 throw new XMPPException(response.getError());
84 public String getName() throws XMPPException {
98 throw new XMPPException("No response from server on status set.");
101 throw new XMPPException(response.getError());
113 * @throws XMPPException if the agent is not allowed to change his name or no response was
116 public void setName(String newName) throws XMPPException {
131 throw new XMPPException("No response from server on status set.");
    [all...]
TranscriptManager.java 27 import org.jivesoftware.smack.XMPPException;
50 * @throws XMPPException if an error occurs while getting the information.
52 public Transcript getTranscript(String workgroupJID, String sessionID) throws XMPPException {
64 throw new XMPPException("No response from server on status set.");
67 throw new XMPPException(response.getError());
79 * @throws XMPPException if an error occurs while getting the information.
81 public Transcripts getTranscripts(String workgroupJID, String userID) throws XMPPException {
93 throw new XMPPException("No response from server on status set.");
96 throw new XMPPException(response.getError());
TranscriptSearchManager.java 26 import org.jivesoftware.smack.XMPPException;
53 * @throws XMPPException if an error occurs while sending the request to the server.
55 public Form getSearchForm(String serviceJID) throws XMPPException {
70 throw new XMPPException("No response from server on status set.");
73 throw new XMPPException(response.getError());
86 * @throws XMPPException if an error occurs while submiting the search to the server.
88 public ReportedData submitSearch(String serviceJID, Form completedForm) throws XMPPException {
102 throw new XMPPException("No response from server on status set.");
105 throw new XMPPException(response.getError());
  /external/smack/src/org/jivesoftware/smack/util/
SyncPacketSend.java 19 import org.jivesoftware.smack.XMPPException;
36 throws XMPPException
50 throw new XMPPException("No response from server.");
53 throw new XMPPException(result.getError());
59 throws XMPPException
  /external/smack/src/org/jivesoftware/smackx/entitycaps/provider/
CapsExtensionProvider.java 22 import org.jivesoftware.smack.XMPPException;
34 XMPPException {
44 throw new XMPPException("Malformed Caps element");
51 throw new XMPPException("Malformed nested Caps element");
57 throw new XMPPException("Caps elment with missing attributes");
  /external/smack/src/org/jivesoftware/smackx/pubsub/packet/
SyncPacketSend.java 19 import org.jivesoftware.smack.XMPPException;
36 throws XMPPException
50 throw new XMPPException("No response from server.");
53 throw new XMPPException(result.getError());
59 throws XMPPException
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5Utils.java 19 import org.jivesoftware.smack.XMPPException;
53 * @throws XMPPException if the SOCKS5 message contains an unsupported address type
55 public static byte[] receiveSocks5Message(DataInputStream in) throws IOException, XMPPException {
60 throw new XMPPException("Unsupported SOCKS5 address type");
Socks5ClientForInitiator.java 21 import org.jivesoftware.smack.XMPPException;
63 public Socket getSocket(int timeout) throws IOException, XMPPException, InterruptedException,
72 throw new XMPPException("target is not connected to SOCKS5 proxy");
81 catch (XMPPException e) {
83 throw new XMPPException("activating SOCKS5 Bytestream failed", e);
95 private void activate() throws XMPPException {
  /external/smack/src/org/jivesoftware/smackx/bookmark/
BookmarkManager.java 23 import org.jivesoftware.smack.XMPPException;
51 * @throws XMPPException Thrown if the connection is null or has not yet been authenticated.
54 throws XMPPException
73 * @throws XMPPException thrown when the connection is null or has not been authenticated.
75 private BookmarkManager(Connection connection) throws XMPPException {
77 throw new XMPPException("Invalid connection.");
86 * @throws XMPPException thrown when there was an error retrieving the current bookmarks from
90 public Collection<BookmarkedConference> getBookmarkedConferences() throws XMPPException {
103 * @throws XMPPException thrown when there is an issue retrieving the current bookmarks from
107 String nickname, String password) throws XMPPException
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
OfflineMessageManager.java 26 import org.jivesoftware.smack.XMPPException;
77 * @throws XMPPException If the user is not allowed to make this request.
79 public boolean supportsFlexibleRetrieval() throws XMPPException {
88 * @throws XMPPException If the user is not allowed to make this request or the server does
91 public int getMessageCount() throws XMPPException {
109 * @throws XMPPException If the user is not allowed to make this request or the server does
112 public Iterator<OfflineMessageHeader> getHeaders() throws XMPPException {
132 * @throws XMPPException If the user is not allowed to make this request or the server does
135 public Iterator<Message> getMessages(final List<String> nodes) throws XMPPException {
163 throw new XMPPException("No response from server.")
    [all...]
SharedGroupManager.java 25 import org.jivesoftware.smack.XMPPException;
49 public static List<String> getSharedGroups(Connection connection) throws XMPPException {
65 throw new XMPPException("No response from the server.");
68 throw new XMPPException(result.getError());
  /external/smack/src/org/jivesoftware/smackx/provider/
CapsExtensionProvider.java 22 import org.jivesoftware.smack.XMPPException;
34 XMPPException {
55 throw new XMPPException("Malformed caps element");
62 throw new XMPPException("Caps elment with missing attributes");
  /external/smack/asmack-master/static-src/custom/org/jivesoftware/smack/
AndroidConnectionConfiguration.java 31 public AndroidConnectionConfiguration(String serviceName) throws XMPPException {
40 * @throws XMPPException
42 public AndroidConnectionConfiguration(String serviceName, int timeout) throws XMPPException {
73 * @throws XMPPException
75 private void AndroidInit(String serviceName, int timeout) throws XMPPException {
101 throw new XMPPException("DNS lookup timeout after " + timeout + "ms", e);
106 throw new XMPPException("DNS lookup failure");
  /external/smack/src/org/jivesoftware/smackx/search/
UserSearchManager.java 20 import org.jivesoftware.smack.XMPPException;
70 * @throws XMPPException thrown if a server error has occurred.
72 public Form getSearchForm(String searchService) throws XMPPException {
83 * @throws XMPPException thrown if a server error has occurred.
85 public ReportedData getSearchResults(Form searchForm, String searchService) throws XMPPException {
94 * @throws XMPPException thrown if a server error has occurred.
96 public Collection<String> getSearchServices() throws XMPPException {
108 catch (XMPPException e) {

Completed in 1049 milliseconds

1 2 3 4