mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2025-09-10 18:59:41 +02:00
1) Created bookmark manager to facilitate the management of bookmarks. SMACK-144
2) Added RSS attribute to URLs. SMACK-136 git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@4007 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
ae97f5fd6a
commit
8fe7e46330
5 changed files with 363 additions and 41 deletions
24
source/org/jivesoftware/smackx/bookmark/SharedBookmark.java
Normal file
24
source/org/jivesoftware/smackx/bookmark/SharedBookmark.java
Normal file
|
@ -0,0 +1,24 @@
|
|||
/**
|
||||
* $RCSfile: $
|
||||
* $Revision: $
|
||||
* $Date: $
|
||||
*
|
||||
* Copyright (C) 2006 Jive Software. All rights reserved.
|
||||
* This software is the proprietary information of Jive Software. Use is subject to license terms.
|
||||
*/
|
||||
package org.jivesoftware.smackx.bookmark;
|
||||
|
||||
/**
|
||||
* Interface to indicate if a bookmark is shared across the server.
|
||||
*
|
||||
* @author Alexander Wenckus
|
||||
*/
|
||||
public interface SharedBookmark {
|
||||
|
||||
/**
|
||||
* Returns true if this bookmark is shared.
|
||||
*
|
||||
* @return returns true if this bookmark is shared.
|
||||
*/
|
||||
public boolean isShared();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue