Line | |
---|
1 | /* SessionVO.as */
|
---|
2 |
|
---|
3 | package gov.va.med.edp.vo
|
---|
4 | {
|
---|
5 | import com.adobe.cairngorm.vo.IValueObject;
|
---|
6 |
|
---|
7 | [Bindable]
|
---|
8 | public class SessionVO implements IValueObject
|
---|
9 | {
|
---|
10 | public var duz: String;
|
---|
11 | public var userName: String;
|
---|
12 | public var site: String; // this is the Station Number!!
|
---|
13 | public var siteName: String;
|
---|
14 | public var area: int;
|
---|
15 | public var areaName: String;
|
---|
16 | public var siteTimeFM: String;
|
---|
17 | public var siteTime: Date;
|
---|
18 | public var baseTime: Date;
|
---|
19 | public var timeOut: int = 300000; // milliseconds == 5 minutes
|
---|
20 | public var countDown: int = 10000; // milliseconds == 10 secs
|
---|
21 |
|
---|
22 | public var canExport: Boolean = false;
|
---|
23 | public var showProviderReport: Boolean = false;
|
---|
24 | public var showPatientCrossReferenceReport: Boolean = false;
|
---|
25 | public var debugEnabled: Boolean = false;
|
---|
26 |
|
---|
27 | public var serverPackageVersion: String;
|
---|
28 | }
|
---|
29 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.