137138139140141142143
*/ protected CaoList getPoliciesList(String[] attributes) throws CaoException { // Returns a list with the current user LinkedList<CaoElement> list = new LinkedList<CaoElement>(); list.add(this); return new MutableCaoList(this, list); }
137138139140141142143144
LinkedList<CaoElement> list = new LinkedList<CaoElement>(); for (DctmPolicy p : policies) list.add( p ); return new MutableCaoList(this, list); }
8283848586878889
} } catch (Exception e) { // log.d(e); log.d(e.toString()); } return new MutableCaoList(this, list); }