Package org.jitterbit.integration.client.project.deploy

Examples of org.jitterbit.integration.client.project.deploy.DefaultPostDeployEntityProcessor


        // on the server it will be flagged as deployDirty when the new name is applied here
        // on the client:
        processEntityRename(entity);
        PostDeployEntityProcessor entityProcessor = entity.getExtensionObject(PostDeployEntityProcessor.class);
        if (entityProcessor == null) {
            entityProcessor = new DefaultPostDeployEntityProcessor();
        }
        entityProcessor.doPostDeployProcessing(entity, postDeployManager);
        //entity.accept(visitor);
        for (IntegrationEntity r : entity.getAllChildren()) {
            postDeployProcessingImpl(r);
View Full Code Here


        // actual project itself.
        IntegrationEntity realEntity = currentProject.getProject().getItemLookup().getEntity(entity.getID());
        if (realEntity != null) {
            PostDeployEntityProcessor entityProcessor = realEntity.getExtensionObject(PostDeployEntityProcessor.class);
            if (entityProcessor == null) {
                entityProcessor = new DefaultPostDeployEntityProcessor();
            }
            entityProcessor.doPostDeployProcessing(realEntity, postDeployManager);
            // We must process the renaming first, because if the entity was goven a new name on the
            // server it will be flagged as deployDirty when the new name is applied here on the client
            processEntityRename(realEntity);
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.project.deploy.DefaultPostDeployEntityProcessor

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.