mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
8fe7e46330
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
24 lines
561 B
Java
24 lines
561 B
Java
/**
|
|
* $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();
|
|
}
|