1 package com.instantbank.collections.commonQueuing.web;
2
3
4 public class ReviewQueueState {
5
6 Long checkedAccount = new Long("1");
7 Long checkedQueue = new Long("1");
8 Long firstQueue = new Long("1");
9
10
11 public ReviewQueueState() { }
12
13
14 public Long getFirstQueue() {
15 return firstQueue;
16 }
17
18
19 public Long getCheckedQueue() {
20 return checkedQueue;
21 }
22
23
24 public Long getCheckedAccount() {
25 return checkedAccount;
26 }
27
28
29 public void setCheckedQueue(Long actCheckedQueue) {
30 checkedQueue = actCheckedQueue;
31 }
32
33
34 public void setFirstQueue(Long actFirstQueue) {
35 firstQueue = actFirstQueue;
36 }
37
38
39 public void setCheckedAccount(Long actCheckedAccount) {
40 checkedAccount = actCheckedAccount;
41 }
42
43 }
44
45