public UsersPage(String discipline) {
this.discipline = discipline;
tableModel = new DefaultTableModel(new String[]{USER_ID, GROUP_ID, PRIM_ROLE}, 0);
refresh();
JTable table = new AlternateRowColorTable();
table.setModel(tableModel);
setLayout(new GridLayout(1, 1));
add(new JScrollPane(table));
}