source: AnnotationManagerN4J/src/main/java/de/mpiwg/itgroup/annotations/Group.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: 400 bytes
Line 
1/**
2 *
3 */
4package de.mpiwg.itgroup.annotations;
5
6/**
7 * @author casties
8 *
9 */
10public class Group extends Actor {
11
12    public Group(String id) {
13        this.id = id;
14    }
15
16    @Override
17    public boolean isGroup() {
18        return true;
19    }
20
21    public String getIdString() {
22        if (id == null) {
23            id = getIdFromUri(uri, true);
24        }
25        return "group:" + id;
26    }
27
28}
Note: See TracBrowser for help on using the repository browser.