String ddIface = ddBean.getText("adminobject-interface")[0];
GerAdminobjectType admin = connector.addNewAdminobject();
dcbs.put("class "+ddClass+" iface "+ddIface, new AdminObjectDCB(ddBean, admin));
}
List adminResults = new ArrayList();
for (Iterator it = dcbs.keySet().iterator(); it.hasNext();) {
String key = (String) it.next();
DConfigBean value = (DConfigBean) dcbs.get(key);
adminResults.add(value);
}
adminobjects = (AdminObjectDCB[]) adminResults.toArray(new AdminObjectDCB[adminResults.size()]);