com.github.robozonky.app.version.Response Maven / Gradle / Ivy
/*
* Copyright 2021 The RoboZonky Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.robozonky.app.version;
import java.util.Objects;
import java.util.Optional;
final class Response {
private final GithubRelease moreRecentStableVersion;
private final GithubRelease moreRecentExperimentalVersion;
private Response() {
this(null, null);
}
private Response(final GithubRelease moreRecentStableVersion, final GithubRelease moreRecentExperimentalVersion) {
this.moreRecentStableVersion = moreRecentStableVersion;
this.moreRecentExperimentalVersion = moreRecentExperimentalVersion;
}
public static Response noMoreRecentVersion() {
return new Response();
}
public static Response moreRecent(final GithubRelease newStableVersion,
final GithubRelease newExperimentalVersion) {
return new Response(newStableVersion, newExperimentalVersion);
}
public static Response moreRecentExperimental(final GithubRelease newVersion) {
return new Response(null, newVersion);
}
public static Response moreRecentStable(final GithubRelease newVersion) {
return new Response(newVersion, null);
}
public Optional getMoreRecentStableVersion() {
return Optional.ofNullable(moreRecentStableVersion);
}
public Optional getMoreRecentExperimentalVersion() {
return Optional.ofNullable(moreRecentExperimentalVersion);
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || !Objects.equals(getClass(), o.getClass())) {
return false;
}
var response = (Response) o;
return Objects.equals(moreRecentStableVersion, response.moreRecentStableVersion) &&
Objects.equals(moreRecentExperimentalVersion, response.moreRecentExperimentalVersion);
}
@Override
public int hashCode() {
return Objects.hash(moreRecentStableVersion, moreRecentExperimentalVersion);
}
@Override
public String toString() {
return "Response{" +
"moreRecentExperimentalVersion='" + moreRecentExperimentalVersion + '\'' +
", moreRecentStableVersion='" + moreRecentStableVersion + '\'' +
'}';
}
}