| 1 16 package org.outerj.daisy.repository; 17 18 29 public interface CollectionManager { 30 37 DocumentCollection createCollection(String name) throws RepositoryException; 38 39 43 DocumentCollection getCollection(long collectionId, boolean updateable) throws RepositoryException; 44 45 49 DocumentCollection getCollection(String collection, boolean updateable) throws RepositoryException; 50 51 54 DocumentCollection getCollectionByName(String name, boolean updateable) throws RepositoryException; 55 56 67 void deleteCollection(long collectionId) throws RepositoryException; 68 69 72 DocumentCollections getCollections(boolean updateable) throws RepositoryException; 73 } 74 | Popular Tags |