Examples of SubmitInput


Examples of com.google.gerrit.extensions.api.changes.SubmitInput

        final Optional<ChangeInfo> selectedChange = getSelectedChange(anActionEvent);
        if (!selectedChange.isPresent()) {
            return;
        }
        SubmitInput submitInput = new SubmitInput();
        gerritUtil.postSubmit(selectedChange.get().id, submitInput, project, new Consumer<Void>() {
            @Override
            public void consume(Void aVoid) {
                NotificationBuilder notification = new NotificationBuilder(
                        project, "Change submitted", getSuccessMessage(selectedChange.get())
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.