/** * Copyright (C) 2011 JTalks.org Team * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * This library 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 * Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ package org.jtalks.jcommune.plugin.auth.poulpe.dto; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for profile complex type. * <p/> * <p>The following schema fragment specifies the expected content contained within this class. * <p/> * <pre> * <complexType name="profile"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="firstName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="lastName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * @author Guram Savinov */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "profile", namespace = "http://www.jtalks.org/namespaces/1.0", propOrder = { "email", "firstName", "lastName", "enabled"}) public class Profile { @XmlElement(namespace = "http://www.jtalks.org/namespaces/1.0", required = true) protected String firstName; @XmlElement(namespace = "http://www.jtalks.org/namespaces/1.0", required = true) protected String lastName; @XmlElement(namespace = "http://www.jtalks.org/namespaces/1.0", required = true) protected boolean enabled; @XmlElement(namespace = "http://www.jtalks.org/namespaces/1.0", required = true) protected String email; public Profile() { } /** * Creates an {@code Profile} from the {@code PoulpeUser} instance * * @param user the {@code PoulpeUser} instance */ public Profile(PoulpeUser user) { this.firstName = user.getFirstName(); this.lastName = user.getLastName(); this.enabled = user.isEnabled(); this.email = user.getEmail(); } public String getFirstName() { return firstName; } public void setFirstName(String value) { this.firstName = value; } public String getLastName() { return lastName; } public void setLastName(String value) { this.lastName = value; } public boolean isEnabled() { return enabled; } public void setEnabled(boolean enabled) { this.enabled = enabled; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } }