com.commercetools.history.models.change.UnknownChangeImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commercetools-sdk-java-history Show documentation
Show all versions of commercetools-sdk-java-history Show documentation
The e-commerce SDK from commercetools Composable Commerce for Java
package com.commercetools.history.models.change;
import java.time.*;
import java.util.*;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.*;
import io.vrap.rmf.base.client.ModelBase;
import io.vrap.rmf.base.client.utils.Generated;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
/**
* Change triggered when the format of changes on an entity is not identified by Audit Log.
*/
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
public class UnknownChangeImpl implements UnknownChange, ModelBase {
private String type;
private String change;
private java.lang.Object previousValue;
private java.lang.Object nextValue;
/**
* create instance with all properties
*/
@JsonCreator
UnknownChangeImpl(@JsonProperty("change") final String change,
@JsonProperty("previousValue") final java.lang.Object previousValue,
@JsonProperty("nextValue") final java.lang.Object nextValue) {
this.change = change;
this.previousValue = previousValue;
this.nextValue = nextValue;
this.type = UNKNOWN_CHANGE;
}
/**
* create empty instance
*/
public UnknownChangeImpl() {
this.type = UNKNOWN_CHANGE;
}
/**
*
*/
public String getType() {
return this.type;
}
/**
* Identifier for the type of modification.
*/
public String getChange() {
return this.change;
}
/**
* Value before the change.
*/
public java.lang.Object getPreviousValue() {
return this.previousValue;
}
/**
* Value after the change.
*/
public java.lang.Object getNextValue() {
return this.nextValue;
}
public void setChange(final String change) {
this.change = change;
}
public void setPreviousValue(final java.lang.Object previousValue) {
this.previousValue = previousValue;
}
public void setNextValue(final java.lang.Object nextValue) {
this.nextValue = nextValue;
}
@Override
public boolean equals(Object o) {
if (this == o)
return true;
if (o == null || getClass() != o.getClass())
return false;
UnknownChangeImpl that = (UnknownChangeImpl) o;
return new EqualsBuilder().append(type, that.type)
.append(change, that.change)
.append(previousValue, that.previousValue)
.append(nextValue, that.nextValue)
.append(type, that.type)
.append(change, that.change)
.append(previousValue, that.previousValue)
.append(nextValue, that.nextValue)
.isEquals();
}
@Override
public int hashCode() {
return new HashCodeBuilder(17, 37).append(type)
.append(change)
.append(previousValue)
.append(nextValue)
.toHashCode();
}
}