View Javadoc

1   /*
2    *  DISCLAIMER
3    */
4   package org.flowfuse.base.model.right;
5   
6   import org.apache.commons.logging.Log;
7   import org.apache.commons.logging.LogFactory;
8   import org.flowfuse.base.model.BaseObject;
9   
10  /***
11   *
12   * @author <a href="stefan@flowfuse.org">Stefan Kleineikenscheidt</a>,
13   *         Flowfuse.org
14   * @version $Id: SystemRight.java,v 1.2 2005/11/28 21:48:38 skleinei Exp $
15   */
16  public class SystemRight extends BaseObject {
17  
18    /*** RCS ID */
19    public final static String rcsid = "$Id: SystemRight.java,v 1.2 2005/11/28 21:48:38 skleinei Exp $";
20  
21    /*** Logger */
22    protected final Log logger = LogFactory.getLog(this.getClass());
23  
24    private String name = new String();
25  
26    private String link = new String();
27  
28    public SystemRight(String name, String link) {
29      this.name = name;
30      this.link = link;
31    }
32  
33    public String getName() {
34      return name;
35    }
36  
37    public void setName(String name) {
38      this.name = name;
39    }
40  
41    public String getLink() {
42      return link;
43    }
44  
45    public void setLink(String link) {
46      this.link = link;
47    }
48  
49    public boolean equals(Object o) {
50      return false;
51    }
52  
53    public int hashCode() {
54      return 0;
55    }
56  
57    public String toString() {
58      return null;
59    }
60  }
61  
62  /* EOF */