1 24 package javax.jcr.version; 25 26 import javax.jcr.*; 27 import java.util.*; 28 29 33 public interface VersionHistory { 34 35 41 public Version getRootVersion() throws RepositoryException; 42 43 53 public VersionIterator getAllVersions() throws RepositoryException; 54 55 62 public Version getVersion(String versionName) throws RepositoryException; 63 64 71 public Version getVersion(Calendar date) throws RepositoryException; 72 73 74 81 public Version getVersionByLabel(String label) throws RepositoryException; 82 } 83 | Popular Tags |