Package com.agiletec.plugins.jpcontentfeedback.aps.system.services.contentfeedback.rating

Examples of com.agiletec.plugins.jpcontentfeedback.aps.system.services.contentfeedback.rating.RatingDAO


    } catch (Throwable t) {
      throw t;
    } finally{
      List<String> listaIds = this._commentManager.searchCommentIds(null);
      RatingDAO ratingDao = (RatingDAO) ((RatingManager)this._ratingManager).getRatingDAO();
      for (int i=0; i< listaIds.size(); i++){
        IRating rating = this._ratingManager.getCommentRating(Integer.parseInt(listaIds.get(i)));
        if (rating!=null){
          ratingDao.removeRating(rating.getCommentId());
        }
        this._commentManager.deleteComment(Integer.parseInt(listaIds.get(i)));
      }
      IRating rating = this._ratingManager.getContentRating(contentId);
      if (rating!=null){
View Full Code Here

TOP

Related Classes of com.agiletec.plugins.jpcontentfeedback.aps.system.services.contentfeedback.rating.RatingDAO

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.