| 2155 |
ghuddy |
1 |
using System;
|
|
|
2 |
|
|
|
3 |
namespace EA_ReqPro
|
|
|
4 |
{
|
|
|
5 |
/// <summary>
|
|
|
6 |
/// Summary description for Constants.
|
|
|
7 |
/// </summary>
|
|
|
8 |
public class Constants
|
|
|
9 |
{
|
|
|
10 |
// Tagged value identifiers for the ReqProDB element
|
|
|
11 |
public const string TAG_DB_LOCATION = "Location"; // location of the ReqPro database in the file system
|
|
|
12 |
public const string TAG_DB_USERNAME = "Username"; // user name with which to log in to the ReqPro database
|
|
|
13 |
public const string TAG_GUID = "GUID"; // this one may be used in requirement elements too
|
|
|
14 |
public const string TAG_MODE = "Mode";
|
|
|
15 |
public const string TAG_EA_MASTERING_ALLOWED = "EaMasteringAllowed";
|
|
|
16 |
public const string TAG_UNRESTRICTED_IMPORTS = "UnrestrictedImports";
|
|
|
17 |
public const string TAG_LAST_EXPORT_GUID = "LastExportGUID";
|
|
|
18 |
public const string TAG_LAST_EXPORT_NAME = "LastExportName";
|
|
|
19 |
|
|
|
20 |
|
|
|
21 |
// Tagged value identifiers for requirement elements
|
|
|
22 |
public const string TAG_CREATED_IN_EA = "CreatedInEA";
|
|
|
23 |
public const string TAG_TAG = "TAG";
|
|
|
24 |
public const string TAG_SOURCE = "SOURCE";
|
|
|
25 |
public const string TAG_SOURCE_VERSION = "SOURCE_VERSION";
|
|
|
26 |
public const string TAG_SOURCE_SECTION = "SOURCE_SECTION";
|
|
|
27 |
public const string TAG_SUBSYSTEM = "SUBSYSTEM";
|
|
|
28 |
public const string TAG_STABILITY = "STABILITY";
|
|
|
29 |
|
|
|
30 |
|
|
|
31 |
// Default values for certain tagged value options
|
|
|
32 |
public const bool DEFAULT_EA_MASTERING_ALLOWED = true;
|
|
|
33 |
public const bool DEFAULT_UNRESTRICTED_IMPORTS = true;
|
|
|
34 |
public const bool DEFAULT_CREATED_IN_EA = false;
|
|
|
35 |
|
|
|
36 |
// Heading and Key values for options string stored in the Notes of the ReqProDB element
|
|
|
37 |
public const string FILTER_HEADING = "Filter Settings------------------------------------------------------------------------------------------\r\n";
|
|
|
38 |
public const string KEY_FILTER_REQ_STATUS = "REQ_STATUS=";
|
|
|
39 |
public const string KEY_FILTER_REQ_TYPE = "REQ_TYPE=";
|
|
|
40 |
public const string KEY_FILTER_ALLOW_PKG_FRAGS = "ALLOW_PKG_FRAGS=";
|
|
|
41 |
public const string KEY_FILTER_PACKAGE_PREFIX = "GUID=";
|
|
|
42 |
public const string EXPORT_HEADING = "Export Settings------------------------------------------------------------------------------------------\r\n";
|
|
|
43 |
public const string KEY_EXPORTED_GUID = "EXPORTED_GUID=";
|
|
|
44 |
|
|
|
45 |
|
| 2161 |
ghuddy |
46 |
public const string RP_ATTR_SUBSYSTEM_TYPE = "Subsystem Type";
|
|
|
47 |
public const string RP_ATTR_STATUS = "Status";
|
|
|
48 |
public const string RP_ATTR_DIFFICULTY = "Difficulty";
|
|
|
49 |
public const string RP_ATTR_PRIORITY = "Priority";
|
|
|
50 |
public const string RP_ATTR_SOURCE = "Source";
|
|
|
51 |
public const string RP_ATTR_SOURCE_VERSION = "Source Version";
|
|
|
52 |
public const string RP_ATTR_SOURCE_SECTION = "Source Section";
|
|
|
53 |
public const string RP_ATTR_STABILITY = "Stability";
|
|
|
54 |
public const string RP_ATTR_REQ_TYPE = "Requirement Type";
|
| 2155 |
ghuddy |
55 |
|
| 2161 |
ghuddy |
56 |
public const string CHG_LOG_NAME = "Name";
|
|
|
57 |
public const string CHG_LOG_NOTES = "Notes";
|
|
|
58 |
public const string CHG_LOG_DIFFICULTY = "Difficulty";
|
|
|
59 |
public const string CHG_LOG_PRIORITY = "Priority";
|
|
|
60 |
public const string CHG_LOG_VERSION = "Version";
|
|
|
61 |
public const string CHG_LOG_STATUS = "Status";
|
|
|
62 |
public const string CHG_LOG_SUBSYSTEM_TYPE = "Subsystem";
|
|
|
63 |
public const string CHG_LOG_STABILITY = "Stability";
|
|
|
64 |
public const string CHG_LOG_REQ_TYPE = "ReqType";
|
|
|
65 |
public const string CHG_LOG_SOURCE_VERSION = "SourceVersion";
|
|
|
66 |
public const string CHG_LOG_SOURCE_SECTION = "SourceSection";
|
|
|
67 |
public const string CHG_LOG_SOURCE = "Source";
|
|
|
68 |
|
| 2155 |
ghuddy |
69 |
}
|
|
|
70 |
}
|
|
|
71 |
|