source: cprs/trunk/BDK50/BDK32_P50/Source/CCOW_const.pas@ 1683

Last change on this file since 1683 was 1678, checked in by healthsevak, 10 years ago

Added this new version of Broker component libraries while updating the working copy to CPRS version 28

File size: 1.2 KB
Line 
1unit CCOW_const;
2{ **************************************************************
3 Package: XWB - Kernel RPCBroker
4 Date Created: Sept 18, 1997 (Version 1.1)
5 Site Name: Oakland, OI Field Office, Dept of Veteran Affairs
6 Developers: Danila Manapsal, Don Craven, Joel Ivey
7 Description: Contains TRPCBroker and related components.
8 Current Release: Version 1.1 Patch 47 (Jun. 17, 2008))
9*************************************************************** }
10
11
12interface
13const
14 // Note: set the 'CCOW' suffix to the suffix this app should look for in the context.
15 // Eg. Patient.ID.MRN.GeneralHospital, Patient.ID.MRN.VendorAppName, etc.
16 // This string is used during startup (to check for an existing context),
17 // during a commit event (to check the new context), etc.
18
19 //The VistA Domain
20 CCOW_LOGON_ID = 'user.id.logon.vistalogon'; //CCOW
21 //The VistA Token
22 CCOW_LOGON_TOKEN = 'user.id.logon.vistatoken'; //CCOW
23 //The VistA user Name
24 CCOW_LOGON_NAME = 'user.id.logon.vistaname'; //CCOW
25 // The VistA Vpid
26 CCOW_LOGON_VPID = 'user.id.logon.vpid';
27 // The generic name
28 CCOW_USER_NAME = 'user.co.name';
29
30implementation
31
32end.
33
Note: See TracBrowser for help on using the repository browser.