KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > jforum > security > Role


1 /*
2  * Copyright (c) Rafael Steil
3  * All rights reserved.
4
5  * Redistribution and use in source and binary forms,
6  * with or without modification, are permitted provided
7  * that the following conditions are met:
8
9  * 1) Redistributions of source code must retain the above
10  * copyright notice, this list of conditions and the
11  * following disclaimer.
12  * 2) Redistributions in binary form must reproduce the
13  * above copyright notice, this list of conditions and
14  * the following disclaimer in the documentation and/or
15  * other materials provided with the distribution.
16  * 3) Neither the name of "Rafael Steil" nor
17  * the names of its contributors may be used to endorse
18  * or promote products derived from this software without
19  * specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
22  * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
23  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
24  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
27  * THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES
30  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
32  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
34  * IN CONTRACT, STRICT LIABILITY, OR TORT
35  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
36  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
37  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
38  *
39  * This file creation date: 08/01/2004 / 21:34:57
40  * The JForum Project
41  * http://www.jforum.net
42  */

43 package net.jforum.security;
44
45 import java.io.Serializable JavaDoc;
46
47 /**
48  * @author Rafael Steil
49  * @version $Id: Role.java,v 1.7 2005/09/25 02:18:38 rafaelsteil Exp $
50  */

51 public class Role implements Serializable JavaDoc
52 {
53     private int id;
54     private int groupId;
55     private int userId;
56     private String JavaDoc name;
57     private int type;
58     private RoleValueCollection roleValues = new RoleValueCollection();
59     
60     public void setId(int id)
61     {
62         this.id = id;
63     }
64     
65     public void setGroupId(int groupId)
66     {
67         this.groupId = groupId;
68     }
69     
70     public void setUserId(int userId)
71     {
72         this.userId = userId;
73     }
74     
75     public void setName(String JavaDoc name)
76     {
77         this.name = name;
78     }
79     
80     public void setType(int type)
81     {
82         this.type = type;
83     }
84     
85     public int getId()
86     {
87         return this.id;
88     }
89     
90     public int getGroupId()
91     {
92         return this.groupId;
93     }
94     
95     public int getUserId()
96     {
97         return this.userId;
98     }
99     
100     public String JavaDoc getName()
101     {
102         return this.name;
103     }
104     
105     public int getType()
106     {
107         return this.type;
108     }
109     
110     public RoleValueCollection getValues()
111     {
112         return this.roleValues;
113     }
114     
115     /**
116      * @see java.lang.Object#equals(java.lang.Object)
117      */

118     public boolean equals(Object JavaDoc o)
119     {
120         if (!(o instanceof Role)) {
121             return false;
122         }
123         
124         return (((Role)o).getId() == this.id);
125     }
126
127     /**
128      * @see java.lang.Object#hashCode()
129      */

130     public int hashCode()
131     {
132         return this.id;
133     }
134     
135     /**
136      * @see java.lang.Object#toString()
137      */

138     public String JavaDoc toString()
139     {
140         return "[name=" + this.name + ", type=" + this.type + ", values=(" + this.roleValues + ")]";
141     }
142
143 }
144
Popular Tags