diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-11-14 13:41:51 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-11-14 13:41:51 +0100 |
commit | 3a65d790f9b3d3f1be893aacddb272f9b083c6aa (patch) | |
tree | 81af968bbb49fe0940bf740699463c66b0a37109 /sonar-ws | |
parent | caf277ff8768d709a112c39759eaa245a378d3c1 (diff) | |
download | sonarqube-3a65d790f9b3d3f1be893aacddb272f9b083c6aa.tar.gz sonarqube-3a65d790f9b3d3f1be893aacddb272f9b083c6aa.zip |
Remove unused class sonar-ws/OldUsersWsRequest
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/java/org/sonarqube/ws/client/permission/OldUsersWsRequest.java | 104 |
1 files changed, 0 insertions, 104 deletions
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; - } -} |