uk.org.openbanking.datamodel.account.Links Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openbanking-sdk Show documentation
Show all versions of openbanking-sdk Show documentation
A Java SDK to help implementing the Open Banking standard : https://www.openbanking.org.uk/read-write-apis/
/**
*
* The contents of this file are subject to the terms of the Common Development and
* Distribution License (the License). You may not use this file except in compliance with the
* License.
*
* You can obtain a copy of the License at https://forgerock.org/cddlv1-0/. See the License for the
* specific language governing permission and limitations under the License.
*
* When distributing Covered Software, include this CDDL Header Notice in each file and include
* the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
* Header, with the fields enclosed by brackets [] replaced by your own identifying
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2019 ForgeRock AS.
*/
package uk.org.openbanking.datamodel.account;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import javax.validation.constraints.NotNull;
import java.util.Objects;
/**
* Links relevant to the payload
*/
@ApiModel(description = "Links relevant to the payload")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.SpringCodegen", date = "2017-10-16T08:37:28.078Z")
public class Links {
@JsonProperty("Self")
private String self = null;
@JsonProperty("First")
private String first = null;
@JsonProperty("Prev")
private String prev = null;
@JsonProperty("Next")
private String next = null;
@JsonProperty("Last")
private String last = null;
public Links self(String self) {
this.self = self;
return this;
}
/**
* Get self
* @return self
**/
@ApiModelProperty(required = true, value = "")
@NotNull
public String getSelf() {
return self;
}
public void setSelf(String self) {
this.self = self;
}
public Links first(String first) {
this.first = first;
return this;
}
/**
* Get first
* @return first
**/
@ApiModelProperty(value = "")
public String getFirst() {
return first;
}
public void setFirst(String first) {
this.first = first;
}
public Links prev(String prev) {
this.prev = prev;
return this;
}
/**
* Get prev
* @return prev
**/
@ApiModelProperty(value = "")
public String getPrev() {
return prev;
}
public void setPrev(String prev) {
this.prev = prev;
}
public Links next(String next) {
this.next = next;
return this;
}
/**
* Get next
* @return next
**/
@ApiModelProperty(value = "")
public String getNext() {
return next;
}
public void setNext(String next) {
this.next = next;
}
public Links last(String last) {
this.last = last;
return this;
}
/**
* Get last
* @return last
**/
@ApiModelProperty(value = "")
public String getLast() {
return last;
}
public void setLast(String last) {
this.last = last;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Links links = (Links) o;
return Objects.equals(this.self, links.self) &&
Objects.equals(this.first, links.first) &&
Objects.equals(this.prev, links.prev) &&
Objects.equals(this.next, links.next) &&
Objects.equals(this.last, links.last);
}
@Override
public int hashCode() {
return Objects.hash(self, first, prev, next, last);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Links {\n");
sb.append(" self: ").append(toIndentedString(self)).append("\n");
sb.append(" first: ").append(toIndentedString(first)).append("\n");
sb.append(" prev: ").append(toIndentedString(prev)).append("\n");
sb.append(" next: ").append(toIndentedString(next)).append("\n");
sb.append(" last: ").append(toIndentedString(last)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}