1 31 32 package org.opencms.db; 33 34 import org.opencms.file.CmsRequestContext; 35 36 45 public class CmsDbContextFactory implements I_CmsDbContextFactory { 46 47 50 public CmsDbContext getDbContext() { 51 52 return new CmsDbContext(); 53 } 54 55 58 public CmsDbContext getDbContext(CmsRequestContext context) { 59 60 return new CmsDbContext(context); 61 } 62 63 66 public void initialize(CmsDriverManager driverManager) { 67 68 } 70 } 71 | Popular Tags |