/* * SonarQube * Copyright (C) 2009-2017 SonarSource SA * mailto:info 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.db.user; import java.util.List; import javax.annotation.CheckForNull; import javax.annotation.Nullable; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.session.RowBounds; public interface GroupMapper { @CheckForNull GroupDto selectById(int groupId); List<GroupDto> selectByUserLogin(String userLogin); List<GroupDto> selectByNames(@Param("organizationUuid") String organizationUuid, @Param("names") List<String> names); void insert(GroupDto groupDto); void update(GroupDto item); List<GroupDto> selectByQuery(@Param("organizationUuid") String organizationUuid, @Nullable @Param("query") String query, RowBounds rowBounds); int countByQuery(@Param("organizationUuid") String organizationUuid, @Nullable @Param("query") String query); /** * Counts the number of groups with the specified id belonging to the specified organization. * * @return 1 or 0. Either because the organization uuid is not the one of the group or because the group does not exist */ int countGroupByOrganizationAndId(@Param("organizationUuid") String organizationUuid, @Param("groupId") int groupId); void deleteById(int groupId); void deleteByOrganization(@Param("organizationUuid") String organizationUuid); @CheckForNull GroupDto selectByName(@Param("organizationUuid") String organizationUuid, @Param("name") String name); List<GroupDto> selectByOrganizationUuid(@Param("organizationUuid") String organizationUuid); List<GroupDto> selectByIds(@Param("ids") List<Integer> ids); }