Examples of ICommentManager


Examples of com.agiletec.plugins.jpcontentfeedback.aps.system.services.contentfeedback.comment.ICommentManager

*/
public class ContentCommentViewerTag extends TagSupport{
   @Override
    public int doStartTag() throws JspException {
      try {
        ICommentManager commentManager = (ICommentManager) ApsWebApplicationUtils.getBean(JpcontentfeedbackSystemConstants.COMMENTS_MANAGER, this.pageContext);
        IComment comment = commentManager.getComment(this.getCommentId());
        this.pageContext.setAttribute(this.getCommentName(), comment);
      } catch (Throwable e) {
        ApsSystemUtils.logThrowable(e, this, "doStartTag");
        throw new JspException("Errore inizializzazione tag", e);
      }
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.