Class SerializableBookmarkList

java.lang.Object
com.levigo.jadice.web.shared.model.bookmark.SerializableBookmarkList

public class SerializableBookmarkList extends Object
A serializable representation of a BookmarkList intended to be used on the server side. Serves as a container for SerializableBookmarks.

When invoking the operation to send the bookmarks from the client to the server, all bookmarks are contained in a SerializableBookmarkList. The SerializableBookmarkList can be retrieved from the corresponding document as a document property with a key of "SerializableBookmarkList". Use it in your server operation implementation to e.g. persist bookmarks in a third party system.

Use it in your DocumentDataProvider to attach persisted bookmarks while loading a document. The bookmarks will be added automatically on the client side.

For further details and code examples take a look at https://webtoolkit.jadice.com/showcase.

  • Field Details

    • PROPERTY_KEY_SERIALIZABLE_BOOKMARK_LIST

      public static final String PROPERTY_KEY_SERIALIZABLE_BOOKMARK_LIST
      See Also:
  • Constructor Details

    • SerializableBookmarkList

      public SerializableBookmarkList()
      Constructs a new empty list.

      May only be called on the server side in DocumentDataProviders.

  • Method Details