org.sonar.server.updatecenter.ws.UpdateCenterWs.java Source code

Java tutorial

Introduction

Here is the source code for org.sonar.server.updatecenter.ws.UpdateCenterWs.java

Source

/*
 * SonarQube
 * Copyright (C) 2009-2016 SonarSource SA
 * mailto:contact AT sonarsource DOT com
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
package org.sonar.server.updatecenter.ws;

import com.google.common.io.Resources;
import org.sonar.api.server.ws.RailsHandler;
import org.sonar.api.server.ws.WebService;

public class UpdateCenterWs implements WebService {

    private final UpdateCenterWsAction[] actions;

    public UpdateCenterWs(UpdateCenterWsAction... actions) {
        this.actions = actions;
    }

    @Override
    public void define(Context context) {
        NewController controller = context.createController("api/updatecenter")
                .setDescription("Get list of installed plugins").setSince("2.10");

        defineInstalledPluginsAction(controller);
        for (UpdateCenterWsAction action : actions) {
            action.define(controller);
        }

        controller.done();
    }

    private void defineInstalledPluginsAction(NewController controller) {
        NewAction action = controller.createAction("installed_plugins")
                .setDescription("Get the list of all the plugins installed on the SonarQube instance")
                .setSince("2.10").setHandler(RailsHandler.INSTANCE).setInternal(true)
                .setResponseExample(Resources.getResource(this.getClass(), "example-installed_plugins.json"));
        RailsHandler.addFormatParam(action);
    }

}