01: /*
02: * JBoss, Home of Professional Open Source
03: * Copyright 2005, JBoss Inc., and individual contributors as indicated
04: * by the @authors tag. See the copyright.txt in the distribution for a
05: * full listing of individual contributors.
06: *
07: * This is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU Lesser General Public License as
09: * published by the Free Software Foundation; either version 2.1 of
10: * the License, or (at your option) any later version.
11: *
12: * This software is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public
18: * License along with this software; if not, write to the Free
19: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20: * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21: */
22: package org.jboss.portal.cms.security;
23:
24: /** @author Sohil Shah - sohil.shah@jboss.com - Dec 7, 2006 */
25: public class PermUserAssoc {
26: private long id = 0;
27: private String userId = null;
28:
29: /**
30: *
31: *
32: */
33: public PermUserAssoc() {
34: super ();
35: }
36:
37: /** @return */
38: public long getId() {
39: return id;
40: }
41:
42: /** @param id */
43: public void setId(long id) {
44: this .id = id;
45: }
46:
47: /** @return */
48: public String getUserId() {
49: return userId;
50: }
51:
52: /** @param roleId */
53: public void setUserId(String userId) {
54: this .userId = userId;
55: }
56:
57: public boolean equals(Object obj) {
58: boolean equals = false;
59:
60: if (obj instanceof PermUserAssoc) {
61: PermUserAssoc input = (PermUserAssoc) obj;
62: if (input.userId.equals(this .userId)) {
63: equals = true;
64: }
65: }
66:
67: return equals;
68: }
69: }
|