Tuesday, October 23, 2012

Apply ViewCriteria Programatically in AM

                CountryNameROVOImpl countryVO = this.getCountryNameROVO();
                CountryNameROVORowImpl countryRow = null;
       
               countryVO.applyViewCriteria(null);
               countryVO.setApplyViewCriteriaName("CountryNameROVOCriteria");
               countryVO.setBindCountryId(ccDTO.getCountry_code());
               countryVO.executeQuery();
              while(countryVO.hasNext()){
               CountryCodeResponseDTO countryDTO=new CountryCodeResponseDTO();
               countryRow=(CountryNameROVORowImpl) countryVO.next();
               countryDTO.setCountry_name(countryRow.getCountryName());
               nameResponse.add(countryDTO);
                                                           }

No comments: