
com.aylien.textapi.responses.HCard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
AYLIEN's officially supported Java client library for accessing Text API
/**
* Copyright 2016 Aylien, Inc. All Rights Reserved.
*
* 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 com.aylien.textapi.responses;
import javax.xml.bind.annotation.*;
@XmlAccessorType(XmlAccessType.FIELD)
public class HCard {
private String id;
private String fullName;
private Name structuredName;
private String nickName;
private String email;
private String photo;
private String url;
private String telephoneNumber;
private String birthday;
private String category;
private String note;
private String logo;
private Location location;
private Address address;
private String organization;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getFullName() {
return fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
public Name getStructuredName() {
return structuredName;
}
public void setStructuredName(Name structuredName) {
this.structuredName = structuredName;
}
public String getNickName() {
return nickName;
}
public void setNickName(String nickName) {
this.nickName = nickName;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPhoto() {
return photo;
}
public void setPhoto(String photo) {
this.photo = photo;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getTelephoneNumber() {
return telephoneNumber;
}
public void setTelephoneNumber(String telephoneNumber) {
this.telephoneNumber = telephoneNumber;
}
public String getBirthday() {
return birthday;
}
public void setBirthday(String birthday) {
this.birthday = birthday;
}
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
public String getNote() {
return note;
}
public void setNote(String note) {
this.note = note;
}
public String getLogo() {
return logo;
}
public void setLogo(String logo) {
this.logo = logo;
}
public Location getLocation() {
return location;
}
public void setLocation(Location location) {
this.location = location;
}
public Address getAddress() {
return address;
}
public void setAddress(Address address) {
this.address = address;
}
public String getOrganization() {
return organization;
}
public void setOrganization(String organization) {
this.organization = organization;
}
@Override
public String toString() {
return "HCard{" +
"id='" + id + '\'' +
", fullName='" + fullName + '\'' +
", structuredName=" + structuredName +
", nickName='" + nickName + '\'' +
", email='" + email + '\'' +
", photo='" + photo + '\'' +
", url='" + url + '\'' +
", telephoneNumber='" + telephoneNumber + '\'' +
", birthday='" + birthday + '\'' +
", category='" + category + '\'' +
", note='" + note + '\'' +
", logo='" + logo + '\'' +
", location=" + location +
", address=" + address +
", organization='" + organization + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy