Minor update

Signed-off-by: Rahul Rudragoudar <rr83019@gmail.com>
This commit is contained in:
Rahul Rudragoudar 2021-03-29 15:28:28 +05:30
parent 3ea15af41a
commit 30f152f7ec
No known key found for this signature in database
GPG Key ID: 0D2CE231A7287EBC

View File

@ -11,6 +11,11 @@ object ParametersEnum extends Enumeration {
val ALLOWEDMEDIA: Value = Value("allowedMedia")
val ALLOWEDINPUTTYPE: Value = Value("allowedInputType")
}
object AttributesEnum extends Enumeration {
type Attribute = Value
val NAME: Value = Value("name")
val RANDOM_SEED: Value = Value("randomSeed")
val PORT: Value = Value("port")
@ -18,7 +23,6 @@ object ParametersEnum extends Enumeration {
val THROTTLE: Value = Value("throttle")
val THREAD_DELAY: Value = Value("threadDelay")
val CONFIG: Value = Value("config")
}
object ResultEnum extends Enumeration {