fi.otavanopisto.restfulptv.client.model.WebPageChannel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restful-ptv-rest-client Show documentation
Show all versions of restful-ptv-rest-client Show documentation
Restful way to use Palvelutietovaranto.
/**
* RESTful PTV
* Restful way to use Palvelutietovaranto.
*
* OpenAPI spec version: v1
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package fi.otavanopisto.restfulptv.client.model;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import fi.otavanopisto.restfulptv.client.model.Attachment;
import fi.otavanopisto.restfulptv.client.model.LanguageItem;
import fi.otavanopisto.restfulptv.client.model.LocalizedListItem;
import fi.otavanopisto.restfulptv.client.model.ServiceHour;
import fi.otavanopisto.restfulptv.client.model.Support;
import fi.otavanopisto.restfulptv.client.model.WebPage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
@com.fasterxml.jackson.annotation.JsonIgnoreProperties(ignoreUnknown = true)
/**
* WebPageChannel
*/
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.JavaClientCodegen", date = "2016-10-03T15:33:19.141+03:00")
public class WebPageChannel {
@JsonProperty("id")
private String id = null;
@JsonProperty("serviceChannelType")
private String serviceChannelType = null;
@JsonProperty("organizationId")
private String organizationId = null;
@JsonProperty("serviceChannelNames")
private List serviceChannelNames = new ArrayList();
@JsonProperty("serviceChannelDescriptions")
private List serviceChannelDescriptions = new ArrayList();
@JsonProperty("urls")
private List urls = new ArrayList();
@JsonProperty("attachments")
private List attachments = new ArrayList();
@JsonProperty("supportContacts")
private List supportContacts = new ArrayList();
@JsonProperty("languages")
private List languages = new ArrayList();
@JsonProperty("webPages")
private List webPages = new ArrayList();
@JsonProperty("serviceHours")
private List serviceHours = new ArrayList();
@JsonProperty("publishingStatus")
private String publishingStatus = null;
public WebPageChannel id(String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@ApiModelProperty(example = "null", value = "")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public WebPageChannel serviceChannelType(String serviceChannelType) {
this.serviceChannelType = serviceChannelType;
return this;
}
/**
* Get serviceChannelType
* @return serviceChannelType
**/
@ApiModelProperty(example = "null", value = "")
public String getServiceChannelType() {
return serviceChannelType;
}
public void setServiceChannelType(String serviceChannelType) {
this.serviceChannelType = serviceChannelType;
}
public WebPageChannel organizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
/**
* Get organizationId
* @return organizationId
**/
@ApiModelProperty(example = "null", value = "")
public String getOrganizationId() {
return organizationId;
}
public void setOrganizationId(String organizationId) {
this.organizationId = organizationId;
}
public WebPageChannel serviceChannelNames(List serviceChannelNames) {
this.serviceChannelNames = serviceChannelNames;
return this;
}
public WebPageChannel addServiceChannelNamesItem(LocalizedListItem serviceChannelNamesItem) {
this.serviceChannelNames.add(serviceChannelNamesItem);
return this;
}
/**
* Get serviceChannelNames
* @return serviceChannelNames
**/
@ApiModelProperty(example = "null", value = "")
public List getServiceChannelNames() {
return serviceChannelNames;
}
public void setServiceChannelNames(List serviceChannelNames) {
this.serviceChannelNames = serviceChannelNames;
}
public WebPageChannel serviceChannelDescriptions(List serviceChannelDescriptions) {
this.serviceChannelDescriptions = serviceChannelDescriptions;
return this;
}
public WebPageChannel addServiceChannelDescriptionsItem(LocalizedListItem serviceChannelDescriptionsItem) {
this.serviceChannelDescriptions.add(serviceChannelDescriptionsItem);
return this;
}
/**
* Get serviceChannelDescriptions
* @return serviceChannelDescriptions
**/
@ApiModelProperty(example = "null", value = "")
public List getServiceChannelDescriptions() {
return serviceChannelDescriptions;
}
public void setServiceChannelDescriptions(List serviceChannelDescriptions) {
this.serviceChannelDescriptions = serviceChannelDescriptions;
}
public WebPageChannel urls(List urls) {
this.urls = urls;
return this;
}
public WebPageChannel addUrlsItem(LanguageItem urlsItem) {
this.urls.add(urlsItem);
return this;
}
/**
* Get urls
* @return urls
**/
@ApiModelProperty(example = "null", value = "")
public List getUrls() {
return urls;
}
public void setUrls(List urls) {
this.urls = urls;
}
public WebPageChannel attachments(List attachments) {
this.attachments = attachments;
return this;
}
public WebPageChannel addAttachmentsItem(Attachment attachmentsItem) {
this.attachments.add(attachmentsItem);
return this;
}
/**
* Get attachments
* @return attachments
**/
@ApiModelProperty(example = "null", value = "")
public List getAttachments() {
return attachments;
}
public void setAttachments(List attachments) {
this.attachments = attachments;
}
public WebPageChannel supportContacts(List supportContacts) {
this.supportContacts = supportContacts;
return this;
}
public WebPageChannel addSupportContactsItem(Support supportContactsItem) {
this.supportContacts.add(supportContactsItem);
return this;
}
/**
* Get supportContacts
* @return supportContacts
**/
@ApiModelProperty(example = "null", value = "")
public List getSupportContacts() {
return supportContacts;
}
public void setSupportContacts(List supportContacts) {
this.supportContacts = supportContacts;
}
public WebPageChannel languages(List languages) {
this.languages = languages;
return this;
}
public WebPageChannel addLanguagesItem(String languagesItem) {
this.languages.add(languagesItem);
return this;
}
/**
* Get languages
* @return languages
**/
@ApiModelProperty(example = "null", value = "")
public List getLanguages() {
return languages;
}
public void setLanguages(List languages) {
this.languages = languages;
}
public WebPageChannel webPages(List webPages) {
this.webPages = webPages;
return this;
}
public WebPageChannel addWebPagesItem(WebPage webPagesItem) {
this.webPages.add(webPagesItem);
return this;
}
/**
* Get webPages
* @return webPages
**/
@ApiModelProperty(example = "null", value = "")
public List getWebPages() {
return webPages;
}
public void setWebPages(List webPages) {
this.webPages = webPages;
}
public WebPageChannel serviceHours(List serviceHours) {
this.serviceHours = serviceHours;
return this;
}
public WebPageChannel addServiceHoursItem(ServiceHour serviceHoursItem) {
this.serviceHours.add(serviceHoursItem);
return this;
}
/**
* Get serviceHours
* @return serviceHours
**/
@ApiModelProperty(example = "null", value = "")
public List getServiceHours() {
return serviceHours;
}
public void setServiceHours(List serviceHours) {
this.serviceHours = serviceHours;
}
public WebPageChannel publishingStatus(String publishingStatus) {
this.publishingStatus = publishingStatus;
return this;
}
/**
* Get publishingStatus
* @return publishingStatus
**/
@ApiModelProperty(example = "null", value = "")
public String getPublishingStatus() {
return publishingStatus;
}
public void setPublishingStatus(String publishingStatus) {
this.publishingStatus = publishingStatus;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
WebPageChannel webPageChannel = (WebPageChannel) o;
return Objects.equals(this.id, webPageChannel.id) &&
Objects.equals(this.serviceChannelType, webPageChannel.serviceChannelType) &&
Objects.equals(this.organizationId, webPageChannel.organizationId) &&
Objects.equals(this.serviceChannelNames, webPageChannel.serviceChannelNames) &&
Objects.equals(this.serviceChannelDescriptions, webPageChannel.serviceChannelDescriptions) &&
Objects.equals(this.urls, webPageChannel.urls) &&
Objects.equals(this.attachments, webPageChannel.attachments) &&
Objects.equals(this.supportContacts, webPageChannel.supportContacts) &&
Objects.equals(this.languages, webPageChannel.languages) &&
Objects.equals(this.webPages, webPageChannel.webPages) &&
Objects.equals(this.serviceHours, webPageChannel.serviceHours) &&
Objects.equals(this.publishingStatus, webPageChannel.publishingStatus);
}
@Override
public int hashCode() {
return Objects.hash(id, serviceChannelType, organizationId, serviceChannelNames, serviceChannelDescriptions, urls, attachments, supportContacts, languages, webPages, serviceHours, publishingStatus);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WebPageChannel {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" serviceChannelType: ").append(toIndentedString(serviceChannelType)).append("\n");
sb.append(" organizationId: ").append(toIndentedString(organizationId)).append("\n");
sb.append(" serviceChannelNames: ").append(toIndentedString(serviceChannelNames)).append("\n");
sb.append(" serviceChannelDescriptions: ").append(toIndentedString(serviceChannelDescriptions)).append("\n");
sb.append(" urls: ").append(toIndentedString(urls)).append("\n");
sb.append(" attachments: ").append(toIndentedString(attachments)).append("\n");
sb.append(" supportContacts: ").append(toIndentedString(supportContacts)).append("\n");
sb.append(" languages: ").append(toIndentedString(languages)).append("\n");
sb.append(" webPages: ").append(toIndentedString(webPages)).append("\n");
sb.append(" serviceHours: ").append(toIndentedString(serviceHours)).append("\n");
sb.append(" publishingStatus: ").append(toIndentedString(publishingStatus)).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(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}