Support changing of group options via REST

The options of a group can now be set by PUT on
'/groups/<group>/options'.

The WebUI was adapted to use this new REST endpoint.

There is a new JSON entity to describe the group options, which is also
included in the GroupInfo, instead of having the options directly in
the GroupInfo.

Change-Id: I5ea30b6ca397a1a377a038bd551092eccabecd40
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
Edwin Kempin
2013-01-31 10:58:57 +01:00
parent 0d625dcb6a
commit 7c8903b5df
10 changed files with 170 additions and 16 deletions

View File

@@ -0,0 +1,25 @@
// Copyright (C) 2013 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.gerrit.server.group;
import com.google.gerrit.extensions.restapi.RestReadView;
public class GetOptions implements RestReadView<GroupResource> {
@Override
public GroupOptionsInfo apply(GroupResource resource) {
return new GroupOptionsInfo(resource.getGroup());
}
}