Examples of RatingSearchBean


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

  }

  @Override
  public synchronized void addRatingToContent(String contentId, int vote) throws ApsSystemException{
    try {
      RatingSearchBean searchBean = new RatingSearchBean();
      searchBean.setContentId(contentId);
      Rating rating = this.getRatingDAO().getRating(searchBean);
      if (rating == null){
        rating = new Rating();
        int key = this.getKeyGeneratorManager().getUniqueKeyCurrentValue();
        rating.setId(key);
View Full Code Here

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

  }

  @Override
  public synchronized void addRatingToComment(int commentId, int vote) throws ApsSystemException{
    try {
      RatingSearchBean searchBean = new RatingSearchBean();
      searchBean.setCommentId(commentId);
      Rating rating = this.getRatingDAO().getRating(searchBean);
      if (rating == null){
        rating = new Rating();
        int key = this.getKeyGeneratorManager().getUniqueKeyCurrentValue();
        rating.setId(key);
View Full Code Here

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

  @Override
  public IRating getContentRating(String contentId) throws ApsSystemException{
    IRating rating = null;
    try{
      RatingSearchBean searchBean  = new RatingSearchBean();
      searchBean.setContentId(contentId);
      rating = this.getRatingDAO().getRating(searchBean);
    } catch (Throwable t) {
      ApsSystemUtils.logThrowable(t, this, "getRating");
      throw new ApsSystemException("Error get content rating", t);
    }
View Full Code Here

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

  @Override
  public IRating getCommentRating(int commentId) throws ApsSystemException{
    IRating rating = null;
    try{
      RatingSearchBean searchBean  = new RatingSearchBean();
      searchBean.setCommentId(commentId);
      rating = this.getRatingDAO().getRating(searchBean);
    } catch (Throwable t) {
      ApsSystemUtils.logThrowable(t, this, "getCommentRating");
      throw new ApsSystemException("Error get comment rating", t);
    }
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.