1
2 package com.pnpconsult.zeiterfassung.model;
3
4 import java.io.Serializable;
5
6 /***
7 * @author <a href="mailto:powerpete@users.sf.net">M. Petersen</a>
8 * @version $Id: Role.java,v 1.4 2004/06/09 19:26:40 powerpete Exp $
9 *
10 * @hibernate.class table="role"
11 */
12 public class Role implements Serializable
13 {
14 private String name;
15
16 /***
17 * @return Returns the name.
18 *
19 * @hibernate.id generator-class="assigned"
20 */
21 public String getName()
22 {
23 return name;
24 }
25
26 /***
27 * @param name The name to set.
28 */
29 public void setName(String description)
30 {
31 this.name = description;
32 }
33
34 }