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

com.commercetools.history.models.change.RemovePropertyChangeImpl Maven / Gradle / Ivy

There is a newer version: 17.15.1
Show newest version

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 by the Update CustomObject request when an existing property is removed.

*/ @Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") public class RemovePropertyChangeImpl implements RemovePropertyChange, ModelBase { private String type; private String change; private java.lang.Object previousValue; private String path; /** * create instance with all properties */ @JsonCreator RemovePropertyChangeImpl(@JsonProperty("change") final String change, @JsonProperty("previousValue") final java.lang.Object previousValue, @JsonProperty("path") final String path) { this.change = change; this.previousValue = previousValue; this.path = path; this.type = REMOVE_PROPERTY_CHANGE; } /** * create empty instance */ public RemovePropertyChangeImpl() { this.type = REMOVE_PROPERTY_CHANGE; } /** * */ public String getType() { return this.type; } /** * */ public String getChange() { return this.change; } /** *

Value before the change.

*/ public java.lang.Object getPreviousValue() { return this.previousValue; } /** *

Path to the property that was removed.

*/ public String getPath() { return this.path; } public void setChange(final String change) { this.change = change; } public void setPreviousValue(final java.lang.Object previousValue) { this.previousValue = previousValue; } public void setPath(final String path) { this.path = path; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; RemovePropertyChangeImpl that = (RemovePropertyChangeImpl) o; return new EqualsBuilder().append(type, that.type) .append(change, that.change) .append(previousValue, that.previousValue) .append(path, that.path) .append(type, that.type) .append(change, that.change) .append(previousValue, that.previousValue) .append(path, that.path) .isEquals(); } @Override public int hashCode() { return new HashCodeBuilder(17, 37).append(type).append(change).append(previousValue).append(path).toHashCode(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy