pl.allegro.tech.build.axion.release.domain.scm.ScmPushResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axion-release-plugin Show documentation
Show all versions of axion-release-plugin Show documentation
Gradle release and version management plugin
package pl.allegro.tech.build.axion.release.domain.scm;
import java.util.Optional;
public class ScmPushResult {
private final boolean success;
private final Optional remoteMessage;
public ScmPushResult(boolean success, Optional remoteMessage) {
this.success = success;
this.remoteMessage = remoteMessage;
}
public boolean isSuccess() {
return success;
}
public Optional getRemoteMessage() {
return remoteMessage;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy