Examples of PromoteChangesEvent


Examples of org.guvnor.asset.management.model.PromoteChangesEvent

    public void promoteChanges(String repository, String sourceBranch, String destBranch) {
        Map<String, Object> params = new HashMap<String, Object>();
        params.put("GitRepositoryName", repository);
        params.put("SourceBranchName", sourceBranch);
        params.put("TargetBranchName", destBranch);
        promoteChangesEvent.fire(new PromoteChangesEvent(params));
    }
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.