Ignore:
Timestamp:
Jul 13, 2012, 3:22:05 PM (12 years ago)
Author:
casties
Branch:
default
Message:

storing and retrieving permissions works now.

File:
1 edited

Legend:

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

    r10 r13  
    2727        return uri;
    2828    }
     29
     30    /**
     31     * Returns the uri (uses id if empty).
     32     *
     33     * @return the uri
     34     */
     35    public String getUriString() {
     36        if (uri == null) {
     37                return getUriFromId(id, isGroup());
     38        }
     39        return uri;
     40    }
     41
    2942    /**
    3043     * @param uri the uri to set
Note: See TracChangeset for help on using the changeset viewer.