1 5 6 package org.exoplatform.services.jcr.core; 7 8 import javax.jcr.Node; 9 import javax.jcr.Property; 10 import java.util.List ; 11 import javax.jcr.PathNotFoundException; 12 import javax.jcr.RepositoryException; 13 14 20 21 public interface NodeData extends Node { 22 23 public Property getPermanentProperty(String name); 24 25 public void addPermanentProperty(Property property); 26 27 public List getPermanentProperties(); 28 29 public void removePermanentProperty(String name); 30 31 public void refresh(Node withNode) throws PathNotFoundException, RepositoryException; 32 33 } 34 | Popular Tags |