Skip to content

Commit

Permalink
SEBSERV-565 added new Status Filter for Ready status
Browse files Browse the repository at this point in the history
  • Loading branch information
anhefti committed Jul 11, 2024
1 parent 413fb96 commit f2f8a56
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1013,6 +1013,17 @@ public enum ActionDefinition {
PageStateDefinitionImpl.MONITORING_RUNNING_EXAM,
ActionCategory.STATE_FILTER),

MONITOR_EXAM_HIDE_READY_CONNECTION(
new LocTextKey("sebserver.monitoring.exam.connection.action.hide.ready"),
ImageIcon.TOGGLE_OFF,
PageStateDefinitionImpl.MONITORING_RUNNING_EXAM,
ActionCategory.STATE_FILTER),
MONITOR_EXAM_SHOW_READY_CONNECTION(
new LocTextKey("sebserver.monitoring.exam.connection.action.show.ready"),
ImageIcon.TOGGLE_ON,
PageStateDefinitionImpl.MONITORING_RUNNING_EXAM,
ActionCategory.STATE_FILTER),

MONITOR_EXAM_HIDE_ACTIVE_CONNECTION(
new LocTextKey("sebserver.monitoring.exam.connection.action.hide.active"),
ImageIcon.TOGGLE_OFF,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,14 @@ private FullPageMonitoringGUIUpdate createFilterActions(
ConnectionStatus.CONNECTION_REQUESTED,
ActionDefinition.MONITOR_EXAM_SHOW_REQUESTED_CONNECTION,
ActionDefinition.MONITOR_EXAM_HIDE_REQUESTED_CONNECTION);
addFilterAction(
monitoringStatus,
statusFilterGUIUpdate,
actionBuilder,
clientTable,
ConnectionStatus.READY,
ActionDefinition.MONITOR_EXAM_SHOW_READY_CONNECTION,
ActionDefinition.MONITOR_EXAM_HIDE_READY_CONNECTION);
addFilterAction(
monitoringStatus,
statusFilterGUIUpdate,
Expand Down
6 changes: 4 additions & 2 deletions src/main/resources/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2326,8 +2326,10 @@ sebserver.monitoring.exam.connection.action.instruction.lock.confirm=Are you sur
sebserver.monitoring.exam.connection.action.instruction.disable.selected.confirm=Are you sure to disable all selected SEB client connections?
sebserver.monitoring.exam.connection.action.instruction.disable.all.confirm=Are you sure to disable all active SEB client connections?
sebserver.monitoring.exam.connection.action.disable=Mark As Canceled
sebserver.monitoring.exam.connection.action.hide.requested=Hide Requested ( {0} )
sebserver.monitoring.exam.connection.action.show.requested=Show Requested ( {0} )
sebserver.monitoring.exam.connection.action.hide.requested=Hide Connecting ( {0} )
sebserver.monitoring.exam.connection.action.show.requested=Show Connecting ( {0} )
sebserver.monitoring.exam.connection.action.hide.ready=Hide Ready ( {0} )
sebserver.monitoring.exam.connection.action.show.ready=Show Ready ( {0} )
sebserver.monitoring.exam.connection.action.hide.active=Hide Active ( {0} )
sebserver.monitoring.exam.connection.action.show.active=Show Active ( {0} )
sebserver.monitoring.exam.connection.action.hide.closed=Hide Closed ( {0} )
Expand Down

0 comments on commit f2f8a56

Please sign in to comment.