comparison src/main/java/de/mpiwg/itgroup/annotations/Person.java @ 12:5928c5d9aae8

more work on permissions...
author casties
date Fri, 13 Jul 2012 15:02:06 +0200
parents 90911b2da322
children 58357a4b86de
comparison
equal deleted inserted replaced
11:bc90aaeb925d 12:5928c5d9aae8
7 * @author casties 7 * @author casties
8 * 8 *
9 */ 9 */
10 public class Person extends Actor { 10 public class Person extends Actor {
11 11
12 public Person() {
13 }
14
15 public Person(String id) {
16 super();
17 this.id = id;
18 }
19
12 public Person(String uri, String name) { 20 public Person(String uri, String name) {
13 super(); 21 super();
14 this.uri = uri; 22 this.uri = uri;
15 this.name = name; 23 this.name = name;
16 }
17
18 public Person() {
19 }
20
21 public Person(String id) {
22 this.id = id;
23 } 24 }
24 25
25 @Override 26 @Override
26 public boolean isGroup() { 27 public boolean isGroup() {
27 return false; 28 return false;