return CommentBeanPopulator.populate(registry, path);
}
public void addComment(String comment, String path, String sessionId) throws RegistryException {
UserRegistry registry = (UserRegistry) getRootRegistry();
registry.addComment(path, new Comment(comment));
}
public void removeComment(String commentPath, String sessionId) throws RegistryException {
UserRegistry registry = (UserRegistry) getRootRegistry();
registry.removeComment(commentPath);