*/
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);
}