/** * Copyright (C) 2012 BonitaSoft S.A. * BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2.0 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.bonitasoft.web.rest.model.identity; /** * @author Paul AMAR * */ public class PersonalContactData { public static final String ATTRIBUTE_PERSONAL_EMAIL = "personal_email"; public static final String ATTRIBUTE_PERSONAL_PHONE = "personal_phone_number"; public static final String ATTRIBUTE_PERSONAL_MOBILE = "personal_mobile_number"; public static final String ATTRIBUTE_PERSONAL_FAX = "personal_fax_number"; public static final String ATTRIBUTE_PERSONAL_BUILDING = "personal_building"; public static final String ATTRIBUTE_PERSONAL_ROOM = "personal_room"; public static final String ATTRIBUTE_PERSONAL_ADDRESS = "personal_address"; public static final String ATTRIBUTE_PERSONAL_ZIPCODE = "personal_zipcode"; public static final String ATTRIBUTE_PERSONAL_CITY = "personal_city"; public static final String ATTRIBUTE_PERSONAL_STATE = "personal_state"; public static final String ATTRIBUTE_PERSONAL_COUNTRY = "personal_country"; public static final String ATTRIBUTE_PERSONAL_WEBSITE = "personal_website"; /** * Default Constructor. */ public PersonalContactData() { // TODO Auto-generated constructor stub } }