Skip to content

Commit

Permalink
Fix import order and add javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
solth committed Nov 12, 2024
1 parent 10bcab4 commit 20db019
Showing 1 changed file with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@

import static java.lang.Math.toIntExact;

import java.util.Collections;
import java.util.List;
import java.util.Map;

import org.kitodo.data.database.exceptions.DAOException;
import org.kitodo.production.services.data.RoleService;
import org.primefaces.model.FilterMeta;
import org.primefaces.model.SortOrder;

import java.util.Collections;
import java.util.List;
import java.util.Map;

public class LazyRoleModel extends LazyDTOModel {

private boolean showRolesOfAllAvailableClients = false;
Expand All @@ -30,10 +30,20 @@ public LazyRoleModel(RoleService roleService) {
super(roleService);
}

/**
* Get value of 'showRolesOfAllAvailableClients'.
*
* @return value of 'showRolesOfAllAvailableClients'
*/
public boolean isShowRolesOfAllAvailableClients() {
return showRolesOfAllAvailableClients;
}

/**
* Set value of 'showRolesOfAllAvailableClients'.
*
* @param showRolesOfAllAvailableClients boolean
*/
public void setShowRolesOfAllAvailableClients(boolean showRolesOfAllAvailableClients) {
this.showRolesOfAllAvailableClients = showRolesOfAllAvailableClients;
}
Expand Down

0 comments on commit 20db019

Please sign in to comment.