Guest User

Untitled

a guest
Apr 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. /*get record aid year service*/
  2.  
  3. public List<Rzurlncp> getRecordsForAidYear(String aidYear, int displayLength, int start, int sortCol,
  4. String sortDirection) {
  5.  
  6. Map<String, Rzurlncp> result = rzcrncpsRepo.getRecordsForAidYear(aidYear, displayLength, start, sortCol,
  7. sortDirection);
  8.  
  9. @SuppressWarnings("unchecked")
  10. List<Rzurlncp> templistOfAidYears = (List<Rzurlncp>) new ArrayList<Rzurlncp>(result.values()).get(0);
  11.  
  12. return templistOfAidYears;
  13.  
  14. }
Add Comment
Please, Sign In to add comment