fi.metatavu.restfulptv.client.model.Service 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.metatavu.restfulptv.client.model;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import fi.metatavu.restfulptv.client.model.FintoItem;
import fi.metatavu.restfulptv.client.model.LanguageItem;
import fi.metatavu.restfulptv.client.model.Law;
import fi.metatavu.restfulptv.client.model.LocalizedListItem;
import fi.metatavu.restfulptv.client.model.Municipality;
import fi.metatavu.restfulptv.client.model.ServiceOrganization;
import fi.metatavu.restfulptv.client.model.ServiceServiceChannel;
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)
/**
* Service
*/
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.JavaClientCodegen", date = "2017-04-11T07:17:18.637+03:00")
public class Service {
@JsonProperty("id")
private String id = null;
@JsonProperty("type")
private String type = null;
@JsonProperty("statutoryDescriptionId")
private String statutoryDescriptionId = null;
@JsonProperty("serviceClasses")
private List serviceClasses = new ArrayList();
@JsonProperty("ontologyTerms")
private List ontologyTerms = new ArrayList();
@JsonProperty("targetGroups")
private List targetGroups = new ArrayList();
@JsonProperty("lifeEvents")
private List lifeEvents = new ArrayList();
@JsonProperty("industrialClasses")
private List industrialClasses = new ArrayList();
@JsonProperty("names")
private List names = new ArrayList();
@JsonProperty("descriptions")
private List descriptions = new ArrayList();
@JsonProperty("languages")
private List languages = new ArrayList();
@JsonProperty("keywords")
private List keywords = new ArrayList();
@JsonProperty("legislation")
private List legislation = new ArrayList();
@JsonProperty("coverageType")
private String coverageType = null;
@JsonProperty("municipalities")
private List municipalities = new ArrayList();
@JsonProperty("requirements")
private List requirements = new ArrayList();
@JsonProperty("publishingStatus")
private String publishingStatus = null;
@JsonProperty("chargeType")
private String chargeType = null;
@JsonProperty("organizations")
private List organizations = new ArrayList();
@JsonProperty("electronicServiceChannels")
private List electronicServiceChannels = new ArrayList();
@JsonProperty("phoneServiceChannels")
private List phoneServiceChannels = new ArrayList();
@JsonProperty("printableFormServiceChannels")
private List printableFormServiceChannels = new ArrayList();
@JsonProperty("serviceLocationServiceChannels")
private List serviceLocationServiceChannels = new ArrayList();
@JsonProperty("webPageServiceChannels")
private List webPageServiceChannels = new ArrayList();
public Service 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 Service type(String type) {
this.type = type;
return this;
}
/**
* Service type. Possible values are: Service or PermissionAndObligation. NOTE! Current PTV database does not anymore support for types Notice, Registration or Permission - they are automatically mapped into PermissionAndObligation type when possible. POST and PUT methods accepts old types but GET method only can return Service or PermissionAndObligation types.
* @return type
**/
@ApiModelProperty(example = "null", value = "Service type. Possible values are: Service or PermissionAndObligation. NOTE! Current PTV database does not anymore support for types Notice, Registration or Permission - they are automatically mapped into PermissionAndObligation type when possible. POST and PUT methods accepts old types but GET method only can return Service or PermissionAndObligation types.")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Service statutoryDescriptionId(String statutoryDescriptionId) {
this.statutoryDescriptionId = statutoryDescriptionId;
return this;
}
/**
* Get statutoryDescriptionId
* @return statutoryDescriptionId
**/
@ApiModelProperty(example = "null", value = "")
public String getStatutoryDescriptionId() {
return statutoryDescriptionId;
}
public void setStatutoryDescriptionId(String statutoryDescriptionId) {
this.statutoryDescriptionId = statutoryDescriptionId;
}
public Service serviceClasses(List serviceClasses) {
this.serviceClasses = serviceClasses;
return this;
}
public Service addServiceClassesItem(FintoItem serviceClassesItem) {
this.serviceClasses.add(serviceClassesItem);
return this;
}
/**
* Get serviceClasses
* @return serviceClasses
**/
@ApiModelProperty(example = "null", value = "")
public List getServiceClasses() {
return serviceClasses;
}
public void setServiceClasses(List serviceClasses) {
this.serviceClasses = serviceClasses;
}
public Service ontologyTerms(List ontologyTerms) {
this.ontologyTerms = ontologyTerms;
return this;
}
public Service addOntologyTermsItem(FintoItem ontologyTermsItem) {
this.ontologyTerms.add(ontologyTermsItem);
return this;
}
/**
* Get ontologyTerms
* @return ontologyTerms
**/
@ApiModelProperty(example = "null", value = "")
public List getOntologyTerms() {
return ontologyTerms;
}
public void setOntologyTerms(List ontologyTerms) {
this.ontologyTerms = ontologyTerms;
}
public Service targetGroups(List targetGroups) {
this.targetGroups = targetGroups;
return this;
}
public Service addTargetGroupsItem(FintoItem targetGroupsItem) {
this.targetGroups.add(targetGroupsItem);
return this;
}
/**
* Get targetGroups
* @return targetGroups
**/
@ApiModelProperty(example = "null", value = "")
public List getTargetGroups() {
return targetGroups;
}
public void setTargetGroups(List targetGroups) {
this.targetGroups = targetGroups;
}
public Service lifeEvents(List lifeEvents) {
this.lifeEvents = lifeEvents;
return this;
}
public Service addLifeEventsItem(FintoItem lifeEventsItem) {
this.lifeEvents.add(lifeEventsItem);
return this;
}
/**
* Get lifeEvents
* @return lifeEvents
**/
@ApiModelProperty(example = "null", value = "")
public List getLifeEvents() {
return lifeEvents;
}
public void setLifeEvents(List lifeEvents) {
this.lifeEvents = lifeEvents;
}
public Service industrialClasses(List industrialClasses) {
this.industrialClasses = industrialClasses;
return this;
}
public Service addIndustrialClassesItem(FintoItem industrialClassesItem) {
this.industrialClasses.add(industrialClassesItem);
return this;
}
/**
* Get industrialClasses
* @return industrialClasses
**/
@ApiModelProperty(example = "null", value = "")
public List getIndustrialClasses() {
return industrialClasses;
}
public void setIndustrialClasses(List industrialClasses) {
this.industrialClasses = industrialClasses;
}
public Service names(List names) {
this.names = names;
return this;
}
public Service addNamesItem(LocalizedListItem namesItem) {
this.names.add(namesItem);
return this;
}
/**
* Get names
* @return names
**/
@ApiModelProperty(example = "null", value = "")
public List getNames() {
return names;
}
public void setNames(List names) {
this.names = names;
}
public Service descriptions(List descriptions) {
this.descriptions = descriptions;
return this;
}
public Service addDescriptionsItem(LocalizedListItem descriptionsItem) {
this.descriptions.add(descriptionsItem);
return this;
}
/**
* Get descriptions
* @return descriptions
**/
@ApiModelProperty(example = "null", value = "")
public List getDescriptions() {
return descriptions;
}
public void setDescriptions(List descriptions) {
this.descriptions = descriptions;
}
public Service languages(List languages) {
this.languages = languages;
return this;
}
public Service 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 Service keywords(List keywords) {
this.keywords = keywords;
return this;
}
public Service addKeywordsItem(LanguageItem keywordsItem) {
this.keywords.add(keywordsItem);
return this;
}
/**
* List of localized service keywords.
* @return keywords
**/
@ApiModelProperty(example = "null", value = "List of localized service keywords.")
public List getKeywords() {
return keywords;
}
public void setKeywords(List keywords) {
this.keywords = keywords;
}
public Service legislation(List legislation) {
this.legislation = legislation;
return this;
}
public Service addLegislationItem(Law legislationItem) {
this.legislation.add(legislationItem);
return this;
}
/**
* List of laws related to the service.
* @return legislation
**/
@ApiModelProperty(example = "null", value = "List of laws related to the service.")
public List getLegislation() {
return legislation;
}
public void setLegislation(List legislation) {
this.legislation = legislation;
}
public Service coverageType(String coverageType) {
this.coverageType = coverageType;
return this;
}
/**
* Service coverage type. Valid values are: Local or Nationwide.
* @return coverageType
**/
@ApiModelProperty(example = "null", value = "Service coverage type. Valid values are: Local or Nationwide.")
public String getCoverageType() {
return coverageType;
}
public void setCoverageType(String coverageType) {
this.coverageType = coverageType;
}
public Service municipalities(List municipalities) {
this.municipalities = municipalities;
return this;
}
public Service addMunicipalitiesItem(Municipality municipalitiesItem) {
this.municipalities.add(municipalitiesItem);
return this;
}
/**
* Get municipalities
* @return municipalities
**/
@ApiModelProperty(example = "null", value = "")
public List getMunicipalities() {
return municipalities;
}
public void setMunicipalities(List municipalities) {
this.municipalities = municipalities;
}
public Service requirements(List requirements) {
this.requirements = requirements;
return this;
}
public Service addRequirementsItem(LanguageItem requirementsItem) {
this.requirements.add(requirementsItem);
return this;
}
/**
* Get requirements
* @return requirements
**/
@ApiModelProperty(example = "null", value = "")
public List getRequirements() {
return requirements;
}
public void setRequirements(List requirements) {
this.requirements = requirements;
}
public Service publishingStatus(String publishingStatus) {
this.publishingStatus = publishingStatus;
return this;
}
/**
* Publishing status. Possible values are: Draft, Published, Deleted, Modified or OldPublished.
* @return publishingStatus
**/
@ApiModelProperty(example = "null", value = "Publishing status. Possible values are: Draft, Published, Deleted, Modified or OldPublished.")
public String getPublishingStatus() {
return publishingStatus;
}
public void setPublishingStatus(String publishingStatus) {
this.publishingStatus = publishingStatus;
}
public Service chargeType(String chargeType) {
this.chargeType = chargeType;
return this;
}
/**
* Get chargeType
* @return chargeType
**/
@ApiModelProperty(example = "null", value = "")
public String getChargeType() {
return chargeType;
}
public void setChargeType(String chargeType) {
this.chargeType = chargeType;
}
public Service organizations(List organizations) {
this.organizations = organizations;
return this;
}
public Service addOrganizationsItem(ServiceOrganization organizationsItem) {
this.organizations.add(organizationsItem);
return this;
}
/**
* Get organizations
* @return organizations
**/
@ApiModelProperty(example = "null", value = "")
public List getOrganizations() {
return organizations;
}
public void setOrganizations(List organizations) {
this.organizations = organizations;
}
public Service electronicServiceChannels(List electronicServiceChannels) {
this.electronicServiceChannels = electronicServiceChannels;
return this;
}
public Service addElectronicServiceChannelsItem(ServiceServiceChannel electronicServiceChannelsItem) {
this.electronicServiceChannels.add(electronicServiceChannelsItem);
return this;
}
/**
* Get electronicServiceChannels
* @return electronicServiceChannels
**/
@ApiModelProperty(example = "null", value = "")
public List getElectronicServiceChannels() {
return electronicServiceChannels;
}
public void setElectronicServiceChannels(List electronicServiceChannels) {
this.electronicServiceChannels = electronicServiceChannels;
}
public Service phoneServiceChannels(List phoneServiceChannels) {
this.phoneServiceChannels = phoneServiceChannels;
return this;
}
public Service addPhoneServiceChannelsItem(ServiceServiceChannel phoneServiceChannelsItem) {
this.phoneServiceChannels.add(phoneServiceChannelsItem);
return this;
}
/**
* Get phoneServiceChannels
* @return phoneServiceChannels
**/
@ApiModelProperty(example = "null", value = "")
public List getPhoneServiceChannels() {
return phoneServiceChannels;
}
public void setPhoneServiceChannels(List phoneServiceChannels) {
this.phoneServiceChannels = phoneServiceChannels;
}
public Service printableFormServiceChannels(List printableFormServiceChannels) {
this.printableFormServiceChannels = printableFormServiceChannels;
return this;
}
public Service addPrintableFormServiceChannelsItem(ServiceServiceChannel printableFormServiceChannelsItem) {
this.printableFormServiceChannels.add(printableFormServiceChannelsItem);
return this;
}
/**
* Get printableFormServiceChannels
* @return printableFormServiceChannels
**/
@ApiModelProperty(example = "null", value = "")
public List getPrintableFormServiceChannels() {
return printableFormServiceChannels;
}
public void setPrintableFormServiceChannels(List printableFormServiceChannels) {
this.printableFormServiceChannels = printableFormServiceChannels;
}
public Service serviceLocationServiceChannels(List serviceLocationServiceChannels) {
this.serviceLocationServiceChannels = serviceLocationServiceChannels;
return this;
}
public Service addServiceLocationServiceChannelsItem(ServiceServiceChannel serviceLocationServiceChannelsItem) {
this.serviceLocationServiceChannels.add(serviceLocationServiceChannelsItem);
return this;
}
/**
* Get serviceLocationServiceChannels
* @return serviceLocationServiceChannels
**/
@ApiModelProperty(example = "null", value = "")
public List getServiceLocationServiceChannels() {
return serviceLocationServiceChannels;
}
public void setServiceLocationServiceChannels(List serviceLocationServiceChannels) {
this.serviceLocationServiceChannels = serviceLocationServiceChannels;
}
public Service webPageServiceChannels(List webPageServiceChannels) {
this.webPageServiceChannels = webPageServiceChannels;
return this;
}
public Service addWebPageServiceChannelsItem(ServiceServiceChannel webPageServiceChannelsItem) {
this.webPageServiceChannels.add(webPageServiceChannelsItem);
return this;
}
/**
* Get webPageServiceChannels
* @return webPageServiceChannels
**/
@ApiModelProperty(example = "null", value = "")
public List getWebPageServiceChannels() {
return webPageServiceChannels;
}
public void setWebPageServiceChannels(List webPageServiceChannels) {
this.webPageServiceChannels = webPageServiceChannels;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Service service = (Service) o;
return Objects.equals(this.id, service.id) &&
Objects.equals(this.type, service.type) &&
Objects.equals(this.statutoryDescriptionId, service.statutoryDescriptionId) &&
Objects.equals(this.serviceClasses, service.serviceClasses) &&
Objects.equals(this.ontologyTerms, service.ontologyTerms) &&
Objects.equals(this.targetGroups, service.targetGroups) &&
Objects.equals(this.lifeEvents, service.lifeEvents) &&
Objects.equals(this.industrialClasses, service.industrialClasses) &&
Objects.equals(this.names, service.names) &&
Objects.equals(this.descriptions, service.descriptions) &&
Objects.equals(this.languages, service.languages) &&
Objects.equals(this.keywords, service.keywords) &&
Objects.equals(this.legislation, service.legislation) &&
Objects.equals(this.coverageType, service.coverageType) &&
Objects.equals(this.municipalities, service.municipalities) &&
Objects.equals(this.requirements, service.requirements) &&
Objects.equals(this.publishingStatus, service.publishingStatus) &&
Objects.equals(this.chargeType, service.chargeType) &&
Objects.equals(this.organizations, service.organizations) &&
Objects.equals(this.electronicServiceChannels, service.electronicServiceChannels) &&
Objects.equals(this.phoneServiceChannels, service.phoneServiceChannels) &&
Objects.equals(this.printableFormServiceChannels, service.printableFormServiceChannels) &&
Objects.equals(this.serviceLocationServiceChannels, service.serviceLocationServiceChannels) &&
Objects.equals(this.webPageServiceChannels, service.webPageServiceChannels);
}
@Override
public int hashCode() {
return Objects.hash(id, type, statutoryDescriptionId, serviceClasses, ontologyTerms, targetGroups, lifeEvents, industrialClasses, names, descriptions, languages, keywords, legislation, coverageType, municipalities, requirements, publishingStatus, chargeType, organizations, electronicServiceChannels, phoneServiceChannels, printableFormServiceChannels, serviceLocationServiceChannels, webPageServiceChannels);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Service {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" statutoryDescriptionId: ").append(toIndentedString(statutoryDescriptionId)).append("\n");
sb.append(" serviceClasses: ").append(toIndentedString(serviceClasses)).append("\n");
sb.append(" ontologyTerms: ").append(toIndentedString(ontologyTerms)).append("\n");
sb.append(" targetGroups: ").append(toIndentedString(targetGroups)).append("\n");
sb.append(" lifeEvents: ").append(toIndentedString(lifeEvents)).append("\n");
sb.append(" industrialClasses: ").append(toIndentedString(industrialClasses)).append("\n");
sb.append(" names: ").append(toIndentedString(names)).append("\n");
sb.append(" descriptions: ").append(toIndentedString(descriptions)).append("\n");
sb.append(" languages: ").append(toIndentedString(languages)).append("\n");
sb.append(" keywords: ").append(toIndentedString(keywords)).append("\n");
sb.append(" legislation: ").append(toIndentedString(legislation)).append("\n");
sb.append(" coverageType: ").append(toIndentedString(coverageType)).append("\n");
sb.append(" municipalities: ").append(toIndentedString(municipalities)).append("\n");
sb.append(" requirements: ").append(toIndentedString(requirements)).append("\n");
sb.append(" publishingStatus: ").append(toIndentedString(publishingStatus)).append("\n");
sb.append(" chargeType: ").append(toIndentedString(chargeType)).append("\n");
sb.append(" organizations: ").append(toIndentedString(organizations)).append("\n");
sb.append(" electronicServiceChannels: ").append(toIndentedString(electronicServiceChannels)).append("\n");
sb.append(" phoneServiceChannels: ").append(toIndentedString(phoneServiceChannels)).append("\n");
sb.append(" printableFormServiceChannels: ").append(toIndentedString(printableFormServiceChannels)).append("\n");
sb.append(" serviceLocationServiceChannels: ").append(toIndentedString(serviceLocationServiceChannels)).append("\n");
sb.append(" webPageServiceChannels: ").append(toIndentedString(webPageServiceChannels)).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 ");
}
}