From 3a65d790f9b3d3f1be893aacddb272f9b083c6aa Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Mon, 14 Nov 2016 13:41:51 +0100 Subject: [PATCH] Remove unused class sonar-ws/OldUsersWsRequest --- .../client/permission/OldUsersWsRequest.java | 104 ------------------ 1 file changed, 104 deletions(-) delete mode 100644 sonar-ws/src/main/java/org/sonarqube/ws/client/permission/OldUsersWsRequest.java diff --git a/sonar-ws/src/main/java/org/sonarqube/ws/client/permission/OldUsersWsRequest.java b/sonar-ws/src/main/java/org/sonarqube/ws/client/permission/OldUsersWsRequest.java deleted file mode 100644 index d17f32d54e8..00000000000 --- a/sonar-ws/src/main/java/org/sonarqube/ws/client/permission/OldUsersWsRequest.java +++ /dev/null @@ -1,104 +0,0 @@ -/* - * 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.sonarqube.ws.client.permission; - -import javax.annotation.CheckForNull; -import javax.annotation.Nullable; - -import static java.util.Objects.requireNonNull; - -public class OldUsersWsRequest { - private String permission; - private String projectId; - private String projectKey; - private String selected; - private String query; - private Integer page; - private Integer pageSize; - - public String getPermission() { - return permission; - } - - public OldUsersWsRequest setPermission(String permission) { - this.permission = requireNonNull(permission); - return this; - } - - @CheckForNull - public String getProjectId() { - return projectId; - } - - public OldUsersWsRequest setProjectId(@Nullable String projectId) { - this.projectId = projectId; - return this; - } - - @CheckForNull - public String getProjectKey() { - return projectKey; - } - - public OldUsersWsRequest setProjectKey(@Nullable String projectKey) { - this.projectKey = projectKey; - return this; - } - - @CheckForNull - public String getSelected() { - return selected; - } - - public OldUsersWsRequest setSelected(@Nullable String selected) { - this.selected = selected; - return this; - } - - @CheckForNull - public String getQuery() { - return query; - } - - public OldUsersWsRequest setQuery(@Nullable String query) { - this.query = query; - return this; - } - - @CheckForNull - public Integer getPage() { - return page; - } - - public OldUsersWsRequest setPage(int page) { - this.page = page; - return this; - } - - @CheckForNull - public Integer getPageSize() { - return pageSize; - } - - public OldUsersWsRequest setPageSize(int pageSize) { - this.pageSize = pageSize; - return this; - } -} -- 2.39.5