001
002package com.commercetools.api.models.common;
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>A KeyReference represents a loose reference to another resource in the same Project identified by the resource's <code>key</code> field. If available, the <code>key</code> is immutable and mandatory. KeyReferences do not support Reference Expansion.</p>
019 */
020@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
021public class KeyReferenceImpl implements KeyReference, ModelBase {
022
023    private com.commercetools.api.models.common.ReferenceTypeId typeId;
024
025    private String key;
026
027    /**
028     * create instance with all properties
029     */
030    @JsonCreator
031    KeyReferenceImpl(@JsonProperty("typeId") final com.commercetools.api.models.common.ReferenceTypeId typeId,
032            @JsonProperty("key") final String key) {
033        this.typeId = typeId;
034        this.key = key;
035    }
036
037    /**
038     * create empty instance
039     */
040    public KeyReferenceImpl() {
041    }
042
043    /**
044     *  <p>Type of referenced resource.</p>
045     */
046
047    public com.commercetools.api.models.common.ReferenceTypeId getTypeId() {
048        return this.typeId;
049    }
050
051    /**
052     *  <p>User-defined unique and immutable key of the referenced resource.</p>
053     */
054
055    public String getKey() {
056        return this.key;
057    }
058
059    public void setKey(final String key) {
060        this.key = key;
061    }
062
063    @Override
064    public boolean equals(Object o) {
065        if (this == o)
066            return true;
067
068        if (o == null || getClass() != o.getClass())
069            return false;
070
071        KeyReferenceImpl that = (KeyReferenceImpl) o;
072
073        return new EqualsBuilder().append(typeId, that.typeId).append(key, that.key).isEquals();
074    }
075
076    @Override
077    public int hashCode() {
078        return new HashCodeBuilder(17, 37).append(typeId).append(key).toHashCode();
079    }
080
081}