Uses of Class
ccs.cdb.CDBeeTree

Packages that use CDBeeTree
ccs.cdb Object-persistence layer on top of the BeeTree BLOB-persistence engine. 
ccs.http Utility methods for HTTP servers. 
 

Uses of CDBeeTree in ccs.cdb
 

Fields in ccs.cdb declared as CDBeeTree
protected  CDBeeTree CDBObject.owner
          The CDB to which this belongs.
 

Methods in ccs.cdb that return CDBeeTree
 CDBeeTree ChromeCache.cdbFor(java.lang.String dbID)
          Returns the cached CDB itself.
 CDBeeTree CDBObject.getCDB()
          returns the CDBeeTree to which the object currently belongs.
 

Methods in ccs.cdb with parameters of type CDBeeTree
static void CDBFilesystem.delete(CDBeeTree cdb, CDBFile cf)
          Delete the specified CDBFile and update its parent folder.
static void CDBFilesystem.delTree(CDBeeTree cdb, CDBDirectory folder, BeeTreeObserver obs)
          Delete the entire tree rooted at the specified folder, including the folder itself.
static CDBFileMeta CDBFilesystem.getFileMeta(CDBeeTree cdb, java.lang.String path)
          Return the metadata according to a given file.
static boolean CDBFilesystem.hasFilesystem(CDBeeTree cdb, boolean needMetadata)
          Whether this CDB contains a filesystem.
static void CDBFilesystem.insert(CDBeeTree cdb, CDBFile cf)
          Insert a CDBFile, updating and / or creating intervening folders.
static void CDBFilesystem.insert(CDBeeTree cdb, CDBFile cf, CDBDirectory parent)
          Optimised version of insert for situations where the destination CDBDirectory is already available.
static CDBDirectory CDBFilesystem.mkdirs(CDBeeTree cdb, java.lang.String path)
          Return the CDBDirectory corresponding to the specified path, creating it and / or any parent folders as required.
 void ChromeCache.precache(java.lang.String dbID, CDBeeTree cdbt)
          Add a CDB to the cache.
 void CDBeeLine.register(CDBeeTree cdbt)
           
static void CDBFilesystem.rename(CDBeeTree cdb, CDBFile cf, java.lang.String newName)
          Rename the specified CDBFile and update its parent folder.
static void CDBFilesystem.renameFolder(CDBeeTree cdb, CDBDirectory folder, java.lang.String newName)
          Renames a folder.
 void CDBObject.setCDB(CDBeeTree owner)
          Sets which CDB currently owns this object.
 void CDBeeLine.threadLock(CDBeeTree[] trees)
           
static void CDBFilesystem.update(CDBeeTree cdb, CDBFile cf)
          Update an existing CDBFile.
static void CDBFilesystem.verifyFilesystem(CDBeeTree cdb)
          Verify that a valid CDB filesystem exists, and create it if not.
static void CDBFilesystem.verifyLegacyFilesystem(CDBeeTree cdb)
          as verifyFilesystem, except that the result is compatible with Checkpoint 5 installations.
 

Uses of CDBeeTree in ccs.http
 

Methods in ccs.http with parameters of type CDBeeTree
protected  void AbstractXhtmlHandler.sendCDBFile(CDBeeTree cdb, java.lang.String internalPath, org.mortbay.http.HttpRequest ha, org.mortbay.http.HttpResponse hq)
          Send back a CDBFile, using either sendBuffer or sendStream depending on size.