Example #1
0
 public List getFacadeListByAuthorityDomain(String authority, String domain) {
   ArrayList typeList = new ArrayList();
   List list = getListByAuthorityDomain(authority, domain);
   for (int i = 0; i < list.size(); i++) {
     TypeD type = (TypeD) list.get(i);
     TypeFacade f =
         new TypeFacade(
             type.getAuthority(), type.getDomain(), type.getKeyword(), type.getDescription());
     f.setTypeId(type.getTypeId());
     typeList.add(f);
   }
   return (List) typeList;
 }