/* * * Copyright 2013 Entando S.r.l. (http://www.entando.com) All rights reserved. * * This file is part of Entando Enterprise Edition software. * You can redistribute it and/or modify it * under the terms of the Entando's EULA * * See the file License for the specific language governing permissions * and limitations under the License * * * * Copyright 2013 Entando S.r.l. (http://www.entando.com) All rights reserved. * */ package com.agiletec.plugins.jpwebmail.aps.system.services.addressbook.model; /** * @version 1.0 * @author E.Santoboni */ public class AddressBookContact { public String getFullName() { return _fullName; } public void setFullName(String fullName) { this._fullName = fullName; } public String getUsername() { return _username; } public void setUsername(String username) { this._username = username; } public String getEmailAddress() { return _emailAddress; } public void setEmailAddress(String emailAddress) { this._emailAddress = emailAddress; } private String _fullName; private String _username; private String _emailAddress; }