source: AnnotationManagerN4J/src/main/java/de/mpiwg/itgroup/annotations/Person.java @ 10:90911b2da322

Last change on this file since 10:90911b2da322 was 10:90911b2da322, checked in by casties, 12 years ago

more work on permissions...

File size: 541 bytes
Line 
1/**
2 *
3 */
4package de.mpiwg.itgroup.annotations;
5
6/**
7 * @author casties
8 *
9 */
10public class Person extends Actor {
11
12    public Person(String uri, String name) {
13        super();
14        this.uri = uri;
15        this.name = name;
16    }
17
18    public Person() {
19    }
20
21    public Person(String id) {
22        this.id = id;
23    }
24
25    @Override
26    public boolean isGroup() {
27        return false;
28    }
29
30    public String getIdString() {
31        if (id == null) {
32            id = getIdFromUri(uri, false);
33        }
34        return id;
35    }
36
37}
Note: See TracBrowser for help on using the repository browser.