All Downloads are FREE. Search and download functionalities are using the official Maven repository.

esendex.sdk.java.model.domain.impl.BaseContact Maven / Gradle / Ivy

Go to download

The Esendex Java SDK is an easy to use client for our REST API that you can use to integrate SMS and Voice messaging into your Java application.

The newest version!
package esendex.sdk.java.model.domain.impl;

import esendex.sdk.java.model.types.ContactType;

public class BaseContact {

	private String id;
	private String concurrencyId;
	private String uri;
	private String firstName;
	private String lastName;
	private String quickName;
	private String mobileNumber;
	private ContactType type;
	
	public BaseContact() {		
	}

	public String getId() {
		return id;
	}
	
	public String getConcurrencyId() {
		return concurrencyId;
	}

	public String getUri() {
		return uri;
	}

	public String getFirstName() {
		return firstName;
	}

	public String getLastName() {
		return lastName;
	}

	public String getQuickName() {
		return quickName;
	}

	public String getMobileNumber() {
		return mobileNumber;
	}

	public ContactType getType() {
		return type;
	}

	protected void setId(String id) {
		this.id = id;
	}

	protected void setConcurrencyId(String concurrencyId) {
		this.concurrencyId = concurrencyId;
	}
	
	protected void setFirstName(String firstName) {
		this.firstName = firstName;
	}

	protected void setLastName(String lastName) {
		this.lastName = lastName;
	}

	protected void setQuickName(String quickName) {
		this.quickName = quickName;
	}

	protected void setMobileNumber(String mobileNumber) {
		this.mobileNumber = mobileNumber;
	}

	protected void setType(ContactType type) {
		this.type = type;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy