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

com.commercetools.history.models.change.UnpublishChangeImpl 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 Unpublish update action.

*/ @Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") public class UnpublishChangeImpl implements UnpublishChange, ModelBase { private String type; private String change; /** * create instance with all properties */ @JsonCreator UnpublishChangeImpl(@JsonProperty("change") final String change) { this.change = change; this.type = UNPUBLISH_CHANGE; } /** * create empty instance */ public UnpublishChangeImpl() { this.type = UNPUBLISH_CHANGE; } /** * */ public String getType() { return this.type; } /** * */ public String getChange() { return this.change; } public void setChange(final String change) { this.change = change; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; UnpublishChangeImpl that = (UnpublishChangeImpl) o; return new EqualsBuilder().append(type, that.type) .append(change, that.change) .append(type, that.type) .append(change, that.change) .isEquals(); } @Override public int hashCode() { return new HashCodeBuilder(17, 37).append(type).append(change).toHashCode(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy