Examples of DeployedEntityDescriptor


Examples of org.jitterbit.integration.client.deploy.DeployedEntityDescriptor

        public PersistableDeploySuccess restore(Persistor p) {
            String id = restoreId(p);
            Date timestamp = restoreTimestamp(p);
            ServerInfo server = restoreServerInfo(p);
            String user = restoreUser(p);
            DeployedEntityDescriptor dataRoot = restoreDataRoot(p);
            return new PersistableDeploySuccess(id, timestamp, server, user, dataRoot);
        }
View Full Code Here

Examples of org.jitterbit.integration.client.deploy.DeployedEntityDescriptor

        public PersistableDeployFailure restore(Persistor p) {
            String id = restoreId(p);
            Date timestamp = restoreTimestamp(p);
            ServerInfo server = restoreServerInfo(p);
            String user = restoreUser(p);
            DeployedEntityDescriptor dataRoot = restoreDataRoot(p);
            Exception cause = ExceptionPersistor.restore(p);
            return new PersistableDeployFailure(id, timestamp, server, user, cause, dataRoot);
        }
View Full Code Here

Examples of org.jitterbit.integration.client.deploy.DeployedEntityDescriptor

        public PersistableDeployWarnings restore(Persistor p) {
            String id = restoreId(p);
            Date timestamp = restoreTimestamp(p);
            ServerInfo server = restoreServerInfo(p);
            String user = restoreUser(p);
            DeployedEntityDescriptor dataRoot = restoreDataRoot(p);
            String[] globalWarnings = restoreGlobalWarnings(p);
            EntityWarning[] itemWarnings = restoreItemWarnings(p);
            RenamedEntity[] itemRenames = restoreRenamedItems(p);
            return new PersistableDeployWarnings(id, timestamp, server, user, globalWarnings, itemWarnings,
                    itemRenames, dataRoot);
View Full Code Here

Examples of org.jitterbit.integration.client.deploy.DeployedEntityDescriptor

        this.entityId = entityId;
    }

    @Override
    public boolean apply(DeployResult result) {
        DeployedEntityDescriptor root = result.getDeployedDataRoot();
        return check(root);
    }
View Full Code Here

Examples of org.jitterbit.integration.client.deploy.DeployedEntityDescriptor

        public void selectionChanged(SelectionChangedEvent evt) {
            OrderedSelection sel = (OrderedSelection) evt.getSelection();
            if (sel.isEmpty()) {
                return;
            }
            DeployedEntityDescriptor entity = (DeployedEntityDescriptor) sel.head();
            warningsUi.setSelectedEntity((entity != null) ? entity.getId() : null);
        }
View Full Code Here

Examples of org.jitterbit.integration.client.deploy.DeployedEntityDescriptor

    private List<DeployedEntityDescriptor> getRootFoldersInOrder(DeployedEntityDescriptor project) {
        Map<EntityType, DeployedEntityDescriptor> rootFolderMap = createPresentRootFoldersMap(project);
        List<DeployedEntityDescriptor> rootFolders = Lists.newArrayList();
        for (EntityType type : EntityTypeConfig.getInstance().getDisplayOrder()) {
            DeployedEntityDescriptor rf = rootFolderMap.get(type);
            if (rf != null) {
                rootFolders.add(rf);
            }
        }
        return rootFolders;
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.