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

Examples of com.agiletec.plugins.jpcontentfeedback.aps.system.services.contentfeedback.event.ContentFeedbackChangedEvent


      throw new ApsSystemException("Error while remove content rating", t);
    }
  }
 
  private void notifyEvent(String contentId, int commentId, int objectCode, int operationCode) throws ApsSystemException {
    ContentFeedbackChangedEvent event = new ContentFeedbackChangedEvent();
    event.setContentId(contentId);
    event.setCommentId(commentId);
    event.setObjectCode(objectCode);
    event.setOperationCode(operationCode);
    this.notifyEvent(event);
  }
View Full Code Here


      throw new ApsSystemException("Error while update comment status", t);
    }
  }
 
  private void notifyEvent(String contentId, int commentId, int objectCode, int operationCode) throws ApsSystemException {
    ContentFeedbackChangedEvent event = new ContentFeedbackChangedEvent();
    event.setContentId(contentId);
    event.setCommentId(commentId);
    event.setObjectCode(objectCode);
    event.setOperationCode(operationCode);
    this.notifyEvent(event);
  }
View Full Code Here

TOP

Related Classes of com.agiletec.plugins.jpcontentfeedback.aps.system.services.contentfeedback.event.ContentFeedbackChangedEvent

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.