GerAdminobjectType old = dcb.getAdminObject();
GerAdminobjectInstanceType[] array = admin.getAdminobjectInstanceArray();
int oldCount = dcb.getAdminObjectInstance().length;
for (int j = 0; j < array.length; j++) {
GerAdminobjectInstanceType instance = array[j];
XmlCursor source = instance.newCursor();
XmlCursor dest = old.newCursor();
dest.toEndToken();
if(!source.moveXml(dest)) {
throw new RuntimeException("Unable to move admin object instance");
}