Package org.internna.iwebmvc.model.core.hierarchy

Examples of org.internna.iwebmvc.model.core.hierarchy.AbstractHierarchyNode


    @Transactional
    @SuppressWarnings("unchecked")
    public boolean removeNode(Class<? extends AbstractHierarchyNode> nodeClass, UUID id) throws Exception {
        Assert.notNull(id);
        Assert.notNull(nodeClass);
        AbstractHierarchyNode node = dao.find(nodeClass, id);
        dao.remove(node.getHierarchy());
        return true;
    }
View Full Code Here

TOP

Related Classes of org.internna.iwebmvc.model.core.hierarchy.AbstractHierarchyNode

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.