
uk.gov.gchq.gaffer.graph.GraphResult Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2018-2020 Crown Copyright
*
* 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 uk.gov.gchq.gaffer.graph;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import uk.gov.gchq.gaffer.commonutil.ToStringBuilder;
import uk.gov.gchq.gaffer.store.Context;
public class GraphResult {
private final O result;
private final Context context;
@JsonCreator
public GraphResult(@JsonProperty("result") final O result, @JsonProperty("context") final Context context) {
this.result = result;
this.context = context;
}
public O getResult() {
return result;
}
public Context getContext() {
return context;
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final GraphResult> that = (GraphResult>) o;
return new EqualsBuilder()
.append(result, that.result)
.append(context, that.context)
.isEquals();
}
@Override
public int hashCode() {
return new HashCodeBuilder(17, 37)
.append(result)
.append(context)
.toHashCode();
}
@Override
public String toString() {
return new ToStringBuilder(this)
.append("result", result)
.append("context", context)
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy