use of gov.ca.cwds.data.persistence.cms.ApiSystemCodeDao in project api-core by ca-cwds.
the class CmsSystemCodeCacheLoader method main.
public static void main(String[] args) {
try {
ApiSystemCodeDao dao = new SystemCodeDaoFileImpl();
if (args.length > 1) {
// dao = new FileSystemCodeDao(new File(args[0]));
}
ApiSystemCodeCache cache = new CmsSystemCodeCacheService(dao);
} catch (ServiceException e) {
LOGGER.error("FATAL ERROR", e);
}
}
Aggregations