Make all REST resources public so that they can be used from plugins

Make the RestResource classes and their constructors public so that they
can be used from plugins. Most RestResource classes were already public,
so this makes it consistent across all RestResources.

Change-Id: I49b7dc9b3bd7e9b0734d5933392df60b006e5745
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
Edwin Kempin
2015-02-20 10:29:57 +01:00
committed by David Pursehouse
parent 04cbd34e70
commit d6a48f0201
9 changed files with 13 additions and 12 deletions

View File

@@ -25,7 +25,8 @@ public class IncludedGroupResource extends GroupResource {
private final GroupDescription.Basic member;
IncludedGroupResource(GroupResource group, GroupDescription.Basic member) {
public IncludedGroupResource(GroupResource group,
GroupDescription.Basic member) {
super(group);
this.member = member;
}