Package org.wso2.carbon.registry.core.session

Examples of org.wso2.carbon.registry.core.session.UserRegistry.removeComment()


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

    public TagBean getTags(String path, String sessionId) throws RegistryException {
        UserRegistry registry = (UserRegistry) getRootRegistry();
        return TagBeanPopulator.populate(registry, path);
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.