Ignore:
Timestamp:
08/11/14 16:07:55 (10 years ago)
Author:
olhsha@mpi.nl
Message:

Added group service. Tested via the tomcat on loclahots (test URI and postman), old unit tests are adjusted and work well. Todo: retest on localhost tomcat, look at run-time exceptions, add new unit tests, adjust front-end

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ComponentRegistry/trunk/ComponentRegistry/src/main/java/clarin/cmdi/componentregistry/rss/RssCreator.java

    r2515 r5549  
    2020    private String channelTitle;
    2121    private Comparator<T> comparator;
    22     protected final boolean userspace;
     22    protected final boolean isPrivate;
    2323    private List<T> objs;
    2424    private int limit;
    2525
    26     protected RssCreator(boolean userspace, String baseURI, int limit, List<T> objs) {
    27         this.userspace = userspace;
     26    protected RssCreator(boolean isPrivate, String baseURI, int limit, List<T> objs) {
     27        this.isPrivate = isPrivate;
    2828        this.baseURI = baseURI;
    2929        this.limit = limit;
Note: See TracChangeset for help on using the changeset viewer.