public List<Organisation> childOrgs() {
   if (getChildOrgs() == null) {
     return Collections.EMPTY_LIST;
   } else {
     List<Organisation> list = new ArrayList<>();
     for (Organisation o : getChildOrgs()) {
       if (!o.deleted()) {
         list.add(o);
       }
     }
     return list;
   }
 }