Package org.jitterbit.integration.database.info

Examples of org.jitterbit.integration.database.info.DatabaseObjectPersistor.restoreFrom()


    private void restoreObjects(Persistor p) {
        objects = Maps.newHashMap();
        Persistor root = p.getFirstChild("Objects");
        DatabaseObjectPersistor op = new DatabaseObjectPersistor();
        for (Persistor item : root.getChildren("Item")) {
            objects.put(op.restoreFrom(item.getFirstChild("Object")), item.getInteger("value"));
        }
    }

    private void reconstructIncludeSchemaProperty() {
        if (getData().containsKey(INCLUDE_SCHEMA_NAME)) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.