Package org.jitterbit.integration.data.entity.factory

Examples of org.jitterbit.integration.data.entity.factory.IntegrationEntityFactoryCallback


    }

    @Override
    public void createEntity(EntityType type, Folder parent, boolean openEditor, Callback callback) {
        checkArgument(type != EntityType.Folder, "Folders cannot be created through this factory");
        IntegrationEntityFactoryCallback factoryCallback = createFactoryCallback(type, callback, openEditor);
        IntegrationEntityFactory factory = getEntityFactory(type);
        factory.createEntity(parent, factoryCallback);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.entity.factory.IntegrationEntityFactoryCallback

Copyright © 2018 www.massapicom. 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.