remove unnecessary code lines

billing-fix-2-9713
Thilina Sandaruwan 1 year ago
parent bb50717370
commit bc2bccac84

@ -32,7 +32,6 @@ import java.util.Map;
* This interface represents the key operations associated with persisting group related information.
*/
public interface GroupDAO {
/**
* Add new Device Group.
*
@ -197,7 +196,6 @@ public interface GroupDAO {
/**
* Get the groups of device with device id provided
*
* @param deviceId
* @return groups which has the device.
* @throws GroupManagementDAOException
@ -424,15 +422,16 @@ public interface GroupDAO {
* @throws GroupManagementDAOException
*/
int getOwnGroupsCount(String username, int tenantId, String parentPath) throws GroupManagementDAOException;
/**
components/device-mgt/io.entgra.device.mgt.core.device.mgt.core/src/main/java/io/entgra/device/mgt/core/device/mgt/core/dao/GroupDAO.java * Get device Ids of devices which are assigned to groups.
* Get device Ids of devices which are assigned to groups.
*
* @param paginationRequest Request object with offset and limit.
* @param groupNames default group names that should be omitted when checking the device
* whether they have been assigned to groups
* @return details of devices that are unassigned to groups.
* @throws GroupManagementDAOException Might occur while retrieving information of group
* unassigned devices
* @return details of devices that are unassigned to groups.
*/
List<Device> getGroupUnassignedDevices(PaginationRequest paginationRequest,

Loading…
Cancel
Save