@Override
 public List<CountryEnvParam> findListByCriteria(
     String system,
     int start,
     int amount,
     String column,
     String dir,
     String searchTerm,
     String individualSearch) {
   return countryEnvParamDao.findListByCriteria(
       system, start, amount, column, dir, searchTerm, individualSearch);
 }
 @Override
 public void update(CountryEnvParam cep) throws CerberusException {
   countryEnvParamDao.update(cep);
 }
 @Override
 public List<CountryEnvParam> findAll(String system) throws CerberusException {
   return countryEnvParamDao.findAll(system);
 }
 @Override
 public List<CountryEnvParam> findCountryEnvParamByCriteria(CountryEnvParam countryEnvParam)
     throws CerberusException {
   return countryEnvParamDao.findCountryEnvParamByCriteria(countryEnvParam);
 }
 @Override
 public CountryEnvParam findCountryEnvParamByKey(String system, String country, String environment)
     throws CerberusException {
   return countryEnvParamDao.findCountryEnvParamByKey(system, country, environment);
 }
 @Override
 public List<CountryEnvParam> findListByCriteria(String system) {
   return countryEnvParamDao.findListByCriteria(system);
 }
 @Override
 public Integer count(String searchTerm, String inds) {
   return countryEnvParamDao.count(searchTerm, inds);
 }