/* * Copyright (C) 2011 halvors <halvors@skymiastudios.com> * Copyright (C) 2011 speeddemon92 <speeddemon92@gmail.com> * Copyright (C) 2011 adamonline45 <adamonline45@gmail.com> * * This file is part of Lupi. * * Lupi 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. * * Lupi 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 Lupi. If not, see <http://www.gnu.org/licenses/>. */ package org.halvors.lupi.wolf; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; /** * Represents a WolfTable. * * @author halvors */ @Entity() @Table(name = "lupi_wolf") public class WolfTable { @Id private int id; private String uniqueId; private String name; private String owner; private boolean inventory; private String world; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getUniqueId() { return uniqueId; } public void setUniqueId(String uniqueId) { this.uniqueId = uniqueId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getOwner() { return owner; } public void setOwner(String owner) { this.owner = owner; } public boolean isInventory() { return inventory; } public void setInventory(boolean inventory) { this.inventory = inventory; } public String getWorld() { return world; } public void setWorld(String world) { this.world = world; } }