Package com.gadglet.gadgets.personalNotesApps.server

Examples of com.gadglet.gadgets.personalNotesApps.server.PersonalNotesAppsData


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

Related Classes of com.gadglet.gadgets.personalNotesApps.server.PersonalNotesAppsData

Copyright © 2018 www.massapicom. 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.