fi.otavanopisto.kuntaapi.server.rest.model.Banner Maven / Gradle / Ivy
package fi.otavanopisto.kuntaapi.server.rest.model;
import io.swagger.annotations.*;
import java.util.Objects;
public class Banner {
private String id = null;
private String title = null;
private String contents = null;
private String link = null;
/**
**/
public Banner id(String id) {
this.id = id;
return this;
}
@ApiModelProperty(example = "null", value = "")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
/**
**/
public Banner title(String title) {
this.title = title;
return this;
}
@ApiModelProperty(example = "null", value = "")
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
/**
**/
public Banner contents(String contents) {
this.contents = contents;
return this;
}
@ApiModelProperty(example = "null", value = "")
public String getContents() {
return contents;
}
public void setContents(String contents) {
this.contents = contents;
}
/**
**/
public Banner link(String link) {
this.link = link;
return this;
}
@ApiModelProperty(example = "null", value = "")
public String getLink() {
return link;
}
public void setLink(String link) {
this.link = link;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Banner banner = (Banner) o;
return Objects.equals(id, banner.id) &&
Objects.equals(title, banner.title) &&
Objects.equals(contents, banner.contents) &&
Objects.equals(link, banner.link);
}
@Override
public int hashCode() {
return Objects.hash(id, title, contents, link);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Banner {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" title: ").append(toIndentedString(title)).append("\n");
sb.append(" contents: ").append(toIndentedString(contents)).append("\n");
sb.append(" link: ").append(toIndentedString(link)).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 ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy