Ignore:
Timestamp:
Jul 13, 2012, 1:02:06 PM (12 years ago)
Author:
casties
Branch:
default
Message:

more work on permissions...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/de/mpiwg/itgroup/annotations/Person.java

    r10 r12  
    1010public class Person extends Actor {
    1111
     12    public Person() {
     13    }
     14
     15    public Person(String id) {
     16        super();
     17        this.id = id;
     18    }
     19
    1220    public Person(String uri, String name) {
    1321        super();
    1422        this.uri = uri;
    1523        this.name = name;
    16     }
    17 
    18     public Person() {
    19     }
    20 
    21     public Person(String id) {
    22         this.id = id;
    2324    }
    2425
Note: See TracChangeset for help on using the changeset viewer.