public final class BookmarkManager extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
void |
addBookmarkedConference(java.lang.String name,
org.jxmpp.jid.EntityBareJid jid,
boolean isAutoJoin,
org.jxmpp.jid.parts.Resourcepart nickname,
java.lang.String password)
Adds or updates a conference in the bookmarks.
|
void |
addBookmarkedURL(java.lang.String URL,
java.lang.String name,
boolean isRSS)
Adds a new url or updates an already existing url in the bookmarks.
|
java.util.List<BookmarkedConference> |
getBookmarkedConferences()
Returns all currently bookmarked conferences.
|
java.util.List<BookmarkedURL> |
getBookmarkedURLs()
Returns an unmodifiable collection of all bookmarked urls.
|
static BookmarkManager |
getBookmarkManager(XMPPConnection connection)
Returns the BookmarkManager for a connection, if it doesn't exist it is created.
|
boolean |
isSupported()
Check if the service supports bookmarks using private data.
|
void |
removeBookmarkedConference(org.jxmpp.jid.EntityBareJid jid)
Removes a conference from the bookmarks.
|
void |
removeBookmarkedURL(java.lang.String bookmarkURL)
Removes a url from the bookmarks.
|
public static BookmarkManager getBookmarkManager(XMPPConnection connection)
connection - the connection for which the manager is desired.java.lang.IllegalArgumentException - when the connection is null.public java.util.List<BookmarkedConference> getBookmarkedConferences() throws SmackException.NoResponseException, XMPPException.XMPPErrorException, SmackException.NotConnectedException, java.lang.InterruptedException
XMPPException.XMPPErrorExceptionSmackException.NoResponseExceptionSmackException.NotConnectedExceptionjava.lang.InterruptedExceptionBookmarkedConferencepublic void addBookmarkedConference(java.lang.String name, org.jxmpp.jid.EntityBareJid jid, boolean isAutoJoin, org.jxmpp.jid.parts.Resourcepart nickname, java.lang.String password) throws SmackException.NoResponseException, XMPPException.XMPPErrorException, SmackException.NotConnectedException, java.lang.InterruptedException
name - the name of the conferencejid - the jid of the conferenceisAutoJoin - whether or not to join this conference automatically on loginnickname - the nickname to use for the user when joining the conferencepassword - the password to use for the user when joining the conferenceXMPPException.XMPPErrorException - thrown when there is an issue retrieving the current bookmarks from
the server.SmackException.NoResponseException - if there was no response from the server.SmackException.NotConnectedExceptionjava.lang.InterruptedExceptionpublic void removeBookmarkedConference(org.jxmpp.jid.EntityBareJid jid) throws SmackException.NoResponseException, XMPPException.XMPPErrorException, SmackException.NotConnectedException, java.lang.InterruptedException
jid - the jid of the conference to be removed.XMPPException.XMPPErrorException - thrown when there is a problem with the connection attempting to
retrieve the bookmarks or persist the bookmarks.SmackException.NoResponseException - if there was no response from the server.SmackException.NotConnectedExceptionjava.lang.InterruptedExceptionjava.lang.IllegalArgumentException - thrown when the conference being removed is a shared
conferencepublic java.util.List<BookmarkedURL> getBookmarkedURLs() throws SmackException.NoResponseException, XMPPException.XMPPErrorException, SmackException.NotConnectedException, java.lang.InterruptedException
XMPPException.XMPPErrorException - thrown when there is a problem retriving bookmarks from the server.SmackException.NoResponseException - if there was no response from the server.SmackException.NotConnectedExceptionjava.lang.InterruptedExceptionpublic void addBookmarkedURL(java.lang.String URL, java.lang.String name, boolean isRSS) throws SmackException.NoResponseException, XMPPException.XMPPErrorException, SmackException.NotConnectedException, java.lang.InterruptedException
URL - the url of the bookmarkname - the name of the bookmarkisRSS - whether or not the url is an rss feedXMPPException.XMPPErrorException - thrown when there is an error retriving or saving bookmarks from or to
the serverSmackException.NoResponseException - if there was no response from the server.SmackException.NotConnectedExceptionjava.lang.InterruptedExceptionpublic void removeBookmarkedURL(java.lang.String bookmarkURL) throws SmackException.NoResponseException, XMPPException.XMPPErrorException, SmackException.NotConnectedException, java.lang.InterruptedException
bookmarkURL - the url of the bookmark to removeXMPPException.XMPPErrorException - thrown if there is an error retriving or saving bookmarks from or to
the server.SmackException.NoResponseException - if there was no response from the server.SmackException.NotConnectedExceptionjava.lang.InterruptedExceptionpublic boolean isSupported() throws SmackException.NoResponseException, SmackException.NotConnectedException, XMPPException.XMPPErrorException, java.lang.InterruptedException
SmackException.NoResponseExceptionSmackException.NotConnectedExceptionjava.lang.InterruptedExceptionXMPPException.XMPPErrorExceptionPrivateDataManager.isSupported()