1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-29 14:54:50 +02:00
Smack/source/org/jivesoftware/smackx/bookmark/SharedBookmark.java

25 lines
561 B
Java
Raw Normal View History

/**
* $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();
}