/* * Copyright (C) 2012 maartenl * * 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 3 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 mmud.rest.webentities; import java.util.ArrayList; import java.util.Date; import java.util.List; import javax.xml.bind.annotation.XmlRootElement; /** * * @author maartenl */ @XmlRootElement public class PublicPerson { public String name; public String url; public String title; public String sleep; public String area; public String sex; public String description; public String imageurl; public String guild; public String homepageurl; public String dateofbirth; public String cityofbirth; public Date lastlogin; public String storyline; public Long min; public Long sec; public List<PublicFamily> familyvalues = new ArrayList<>(); public PublicPerson() { } }