Package org.jenkinsci.plugins.workflow.support.storage

Examples of org.jenkinsci.plugins.workflow.support.storage.SimpleXStreamFlowNodeStorage$FlowNodeConverter


    public FlowExecutionOwner getOwner() {
        return owner;
    }

    private SimpleXStreamFlowNodeStorage createStorage() throws IOException {
        return new SimpleXStreamFlowNodeStorage(this, getStorageDir());
    }
View Full Code Here


    private transient List<GraphListener> listeners;

    STMExecution(List<State> states, FlowExecutionOwner owner, List<? extends Action> actions) throws IOException {
        this.states = states;
        this.owner = owner;
        nodeStorage = new SimpleXStreamFlowNodeStorage(this, owner.getRootDir());
        getStateMap();
        listeners = new CopyOnWriteArrayList<GraphListener>();
        // TODO what do we do with the initial actions?
    }
View Full Code Here

TOP

Related Classes of org.jenkinsci.plugins.workflow.support.storage.SimpleXStreamFlowNodeStorage$FlowNodeConverter

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.