Subversion Repositories DevTools

Rev

Rev 2155 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
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
      public const string TAG_IMPORT_SUB_DIR = "ImportSubDir";
20
 
21
 
22
      // Tagged value identifiers for requirement elements
23
      public const string TAG_CREATED_IN_EA = "CreatedInEA";
24
      public const string TAG_TAG = "TAG";
25
      public const string TAG_SOURCE = "SOURCE";
26
      public const string TAG_SOURCE_VERSION = "SOURCE_VERSION";
27
      public const string TAG_SOURCE_SECTION = "SOURCE_SECTION";
28
      public const string TAG_SUBSYSTEM = "SUBSYSTEM";
29
      public const string TAG_STABILITY = "STABILITY";
30
 
31
 
32
      // Default values for certain tagged value options
33
      public const bool DEFAULT_EA_MASTERING_ALLOWED = true;
34
      public const bool DEFAULT_UNRESTRICTED_IMPORTS = true;
35
      public const bool DEFAULT_CREATED_IN_EA = false;
36
 
37
      // Heading and Key values for options string stored in the Notes of the ReqProDB element
38
      public const string FILTER_HEADING = "Filter Settings------------------------------------------------------------------------------------------\r\n";
39
      public const string KEY_FILTER_REQ_STATUS = "REQ_STATUS=";
40
      public const string KEY_FILTER_REQ_TYPE = "REQ_TYPE=";
41
      public const string KEY_FILTER_ALLOW_PKG_FRAGS = "ALLOW_PKG_FRAGS=";
42
      public const string KEY_FILTER_PACKAGE_PREFIX = "GUID=";
43
      public const string EXPORT_HEADING = "Export Settings------------------------------------------------------------------------------------------\r\n"; 
44
      public const string KEY_EXPORTED_GUID = "EXPORTED_GUID=";
45
 
46
 
2161 ghuddy 47
      public const string RP_ATTR_SUBSYSTEM_TYPE = "Subsystem Type";
48
      public const string RP_ATTR_STATUS         = "Status";
49
      public const string RP_ATTR_DIFFICULTY     = "Difficulty";
50
      public const string RP_ATTR_PRIORITY       = "Priority";
51
      public const string RP_ATTR_SOURCE         = "Source";
52
      public const string RP_ATTR_SOURCE_VERSION = "Source Version";
53
      public const string RP_ATTR_SOURCE_SECTION = "Source Section";
54
      public const string RP_ATTR_STABILITY      = "Stability";
55
      public const string RP_ATTR_REQ_TYPE       = "Requirement Type";
2155 ghuddy 56
 
2161 ghuddy 57
      public const string CHG_LOG_NAME           = "Name";
58
      public const string CHG_LOG_NOTES          = "Notes";
59
      public const string CHG_LOG_DIFFICULTY     = "Difficulty";
60
      public const string CHG_LOG_PRIORITY       = "Priority";
61
      public const string CHG_LOG_VERSION        = "Version";
62
      public const string CHG_LOG_STATUS         = "Status";
63
      public const string CHG_LOG_SUBSYSTEM_TYPE = "Subsystem";
64
      public const string CHG_LOG_STABILITY      = "Stability";
65
      public const string CHG_LOG_REQ_TYPE       = "ReqType";
66
      public const string CHG_LOG_SOURCE_VERSION = "SourceVersion";
67
      public const string CHG_LOG_SOURCE_SECTION = "SourceSection";
68
      public const string CHG_LOG_SOURCE         = "Source";
69
 
2155 ghuddy 70
   }
71
}
72