All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mockserver.model.LogEntryBody Maven / Gradle / Ivy

package org.mockserver.model;

import java.util.Objects;

/**
 * @author jamesdbloom
 */
public class LogEntryBody extends BodyWithContentType {
    private int hashCode;
    private final Object value;

    public LogEntryBody(Object value) {
        super(Type.LOG_EVENT, null);
        this.value = value;
    }

    @Override
    public Object getValue() {
        return value;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        if (hashCode() != o.hashCode()) {
            return false;
        }
        if (!super.equals(o)) {
            return false;
        }
        LogEntryBody that = (LogEntryBody) o;
        return Objects.equals(value, that.value);
    }

    @Override
    public int hashCode() {
        if (hashCode == 0) {
            hashCode = Objects.hash(super.hashCode(), value);
        }
        return hashCode;
    }
}