1 package org.exoplatform.services.jcr.core; 2 3 4 import javax.jcr.Property; 5 import java.util.Collection ; 6 import javax.jcr.PathNotFoundException; 7 import javax.jcr.RepositoryException; 8 9 15 public interface NodeChange { 16 17 public NodeData getNode(); 18 19 public int getState(); 20 21 public void setState(int state); 22 23 public NodeData refreshNode(NodeData withNode) throws RepositoryException, PathNotFoundException; 24 25 public String getPath(); 26 } 27 | Popular Tags |