1 16 package org.apache.cocoon.components.repository.helpers; 17 18 import java.util.List ; 19 20 import org.apache.cocoon.ProcessingException; 21 22 25 public interface RepositoryVersioningHelper { 26 27 34 boolean checkout(String uri) throws ProcessingException; 35 36 43 boolean checkin(String uri) throws ProcessingException; 44 45 52 boolean uncheckout(String uri) throws ProcessingException; 53 54 61 boolean isVersioned(String uri) throws ProcessingException; 62 63 71 boolean setVersioned(String uri, boolean versioned) throws ProcessingException; 72 73 80 List getVersions(String uri) throws ProcessingException; 81 82 } | Popular Tags |