Examples of BookMarksList


Examples of com.gadglet.gadgets.bookmarks.server.BookMarksList

   * */
  @Override
  public void doDelete(GadgletRequestWrapper request, GadgletResponse response)
      throws RequestException {
    PersistenceManager pm;   
    BookMarksList item;
    List<SharedItemReff> sharing ;
   
    pm = PMF.get().getPersistenceManager();
    pm.currentTransaction().begin();
    try {
      item = (BookMarksList) helper.getSingleItemByKeyForAction(pm, request, BookMarksList.class);

      if (item == null)
        throw new RequestException(ReqErrorTypes.ITEM_NOT_FOUND);
     
      sharing =   item.getSharedItemReff();
     
      for(SharedItemReff share: sharing)
      {
        // in case not the owner (shared item)
        if(share.getSharedWithId().equals(request.getCurrentUserId()) && !share.getSharingType().equals(SharingType.OWNER))
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.