001
002package com.commercetools.api.models.payment;
003
004import java.time.*;
005import java.util.*;
006
007import com.fasterxml.jackson.annotation.JsonCreator;
008import com.fasterxml.jackson.annotation.JsonProperty;
009import com.fasterxml.jackson.databind.annotation.*;
010
011import io.vrap.rmf.base.client.ModelBase;
012import io.vrap.rmf.base.client.utils.Generated;
013
014import org.apache.commons.lang3.builder.EqualsBuilder;
015import org.apache.commons.lang3.builder.HashCodeBuilder;
016
017/**
018 *  <p>Changing the TransactionState generates the PaymentTransactionStateChanged Message.</p>
019 */
020@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
021public class PaymentChangeTransactionStateActionImpl implements PaymentChangeTransactionStateAction, ModelBase {
022
023    private String action;
024
025    private String transactionId;
026
027    private com.commercetools.api.models.payment.TransactionState state;
028
029    /**
030     * create instance with all properties
031     */
032    @JsonCreator
033    PaymentChangeTransactionStateActionImpl(@JsonProperty("transactionId") final String transactionId,
034            @JsonProperty("state") final com.commercetools.api.models.payment.TransactionState state) {
035        this.transactionId = transactionId;
036        this.state = state;
037        this.action = CHANGE_TRANSACTION_STATE;
038    }
039
040    /**
041     * create empty instance
042     */
043    public PaymentChangeTransactionStateActionImpl() {
044        this.action = CHANGE_TRANSACTION_STATE;
045    }
046
047    /**
048     *
049     */
050
051    public String getAction() {
052        return this.action;
053    }
054
055    /**
056     *  <p>Unique identifier of the Transaction.</p>
057     */
058
059    public String getTransactionId() {
060        return this.transactionId;
061    }
062
063    /**
064     *  <p>New TransactionState.</p>
065     */
066
067    public com.commercetools.api.models.payment.TransactionState getState() {
068        return this.state;
069    }
070
071    public void setTransactionId(final String transactionId) {
072        this.transactionId = transactionId;
073    }
074
075    public void setState(final com.commercetools.api.models.payment.TransactionState state) {
076        this.state = state;
077    }
078
079    @Override
080    public boolean equals(Object o) {
081        if (this == o)
082            return true;
083
084        if (o == null || getClass() != o.getClass())
085            return false;
086
087        PaymentChangeTransactionStateActionImpl that = (PaymentChangeTransactionStateActionImpl) o;
088
089        return new EqualsBuilder().append(action, that.action)
090                .append(transactionId, that.transactionId)
091                .append(state, that.state)
092                .append(action, that.action)
093                .append(transactionId, that.transactionId)
094                .append(state, that.state)
095                .isEquals();
096    }
097
098    @Override
099    public int hashCode() {
100        return new HashCodeBuilder(17, 37).append(action).append(transactionId).append(state).toHashCode();
101    }
102
103}