Package org.jitterbit.integration.client.deploy.history

Examples of org.jitterbit.integration.client.deploy.history.PersistableDeployResult


    public void removeListener(DeployHistoryListener lst) {
        listeners.remove(lst);
    }
   
    private void persistResult(DeployResult result) {
        PersistableDeployResult toStore = PersistableDeployResultFactory.convert(result);
        PersistorStore<PersistableDeployResult> store = getStoreForResult(toStore);
        store.store(toStore, toStore.getPersistName());
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.deploy.history.PersistableDeployResult

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.