Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngel Avila2016-02-04 00:14:58 +0000
committerRyan D. Brooks2016-02-04 00:14:58 +0000
commit6d1a9a151182fdef3be81ab5c3b9e13b90dc35e6 (patch)
treeba3c23f637869cf25fad6717d0061b3599615cd5
parentd941b08d58a62ca9646a5fa5406f78064578fc75 (diff)
downloadorg.eclipse.osee-6d1a9a151182fdef3be81ab5c3b9e13b90dc35e6.tar.gz
org.eclipse.osee-6d1a9a151182fdef3be81ab5c3b9e13b90dc35e6.tar.xz
org.eclipse.osee-6d1a9a151182fdef3be81ab5c3b9e13b90dc35e6.zip
bug: Sync Dispo Types Config
-rw-r--r--plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/types/OseeTypes_Dispo.osee31
1 files changed, 25 insertions, 6 deletions
diff --git a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/types/OseeTypes_Dispo.osee b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/types/OseeTypes_Dispo.osee
index d8e2fa2bcfc..3c7c0a45793 100644
--- a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/types/OseeTypes_Dispo.osee
+++ b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/types/OseeTypes_Dispo.osee
@@ -10,6 +10,7 @@ artifactType "Disposition Set" extends "Artifact" {
attribute "dispo.Import State"
attribute "dispo.Summary Count"
attribute "dispo.Dispo Config"
+ attribute "dispo.Operation Summary"
}
artifactType "dispo.Dispositionable Item" extends "Artifact" {
@@ -28,6 +29,7 @@ artifactType "dispo.Dispositionable Item" extends "Artifact" {
attribute "dispo.Category"
attribute "dispo.Elapsed Time"
attribute "dispo.Aborted"
+ attribute "dispo.Percent Complete"
attribute "dispo.Item Notes"
attribute "dispo.Needs Review"
attribute "dispo.File Number"
@@ -77,6 +79,16 @@ attributeType "dispo.Dispo Config" extends StringAttribute {
mediaType "text/plain"
}
+attributeType "dispo.Operation Summary" extends StringAttribute {
+ uuid 0x1000000000000397
+ dataProvider DefaultAttributeDataProvider
+ min 0
+ max 1
+ fileExtension "txt"
+ mediaType "text/plain"
+}
+
+
attributeType "dispo.Import Path" extends StringAttribute {
uuid 0x1000000000000389
dataProvider DefaultAttributeDataProvider
@@ -107,14 +119,20 @@ attributeType "dispo.Import State" extends EnumeratedAttribute {
oseeEnumType "enum.dispo.imported state" {
uuid 0x3000000000000197
+ entry "NONE"
+ entryGuid "AHkD1ZWRgG65kO3xVB"
entry "No Import"
entryGuid "AHkD1ZWRgG65kO2xwA"
- entry "Imported"
+ entry "No Change"
entryGuid "AHkD42Lk63rhGqAyBOAA"
- entry "Import Failed"
+ entry "Import OK"
entryGuid "AHkD145yThP3YIc3P3AA"
entry "Importing"
entryGuid "AHkD1ZnB3kjoOpcY2bgA"
+ entry "Import Warnings"
+ entryGuid "AHkD1ZnB5kjoOpcY2bcC"
+ entry "Import Failed"
+ entryGuid "AHkD1ZnB5kjoOpZz2bcD"
entry "Unspecified"
entryGuid "AHkD1ZtZdviGWH2sJvwC"
}
@@ -175,7 +193,7 @@ attributeType "dispo.Category" extends StringAttribute {
min 0
max 1
taggerId DefaultAttributeTaggerProvider
- defaultValue "?"
+ defaultValue ""
mediaType "text/plain"
}
@@ -226,10 +244,11 @@ attributeType "dispo.Item Notes" extends StringAttribute {
max 1
taggerId DefaultAttributeTaggerProvider
defaultValue ""
+ mediaType "text/plain"
}
attributeType "dispo.Needs Review" extends BooleanAttribute {
- uuid 0x30000000000002012
+ uuid 0x284999EFDC29513A
dataProvider DefaultAttributeDataProvider
min 1
max 1
@@ -242,7 +261,7 @@ attributeType "dispo.File Number" extends StringAttribute {
dataProvider DefaultAttributeDataProvider
min 0
max 1
- defaultValue "false"
+ defaultValue "0"
mediaType "text/plain"
}
@@ -251,7 +270,7 @@ attributeType "dispo.Method Number" extends StringAttribute {
dataProvider DefaultAttributeDataProvider
min 0
max 1
- defaultValue "false"
+ defaultValue "0"
mediaType "text/plain"
}

Back to the top