60 lines
No EOL
921 B
Text
60 lines
No EOL
921 B
Text
@startuml enums
|
|
|
|
package Domain {
|
|
|
|
package Models {
|
|
enum Practice {
|
|
BCA
|
|
DAST
|
|
MAST
|
|
OSA
|
|
SAST
|
|
SCA
|
|
}
|
|
|
|
enum HTTPMethod {
|
|
GET
|
|
POST
|
|
PUT
|
|
OPTIONS
|
|
}
|
|
|
|
enum Status {
|
|
Created
|
|
Approving
|
|
Open
|
|
Closed
|
|
InProcess
|
|
Postponed
|
|
}
|
|
|
|
enum Resolution {
|
|
None
|
|
FalsePositive
|
|
Confirmed
|
|
Fixed
|
|
Exception
|
|
}
|
|
|
|
enum Priority {
|
|
NotDefined
|
|
Low
|
|
Medium
|
|
High
|
|
Critical
|
|
}
|
|
|
|
enum DefectStatus {
|
|
Created
|
|
Open
|
|
Analysis
|
|
Correction
|
|
Testing
|
|
Postponed
|
|
Closed
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
@enduml |