diff options
author | vasraz <vasyl.razinkov@est.tech> | 2022-12-09 12:36:05 +0000 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2022-12-20 16:54:20 +0000 |
commit | f995db01ee95606b6cded82822a73435ebc190c8 (patch) | |
tree | 1279aee5baa9005ab86ca6f77eca32c554ae149d /openecomp-be/lib/openecomp-heat-lib/src/main/java | |
parent | 7e08a2976d34066412af14fe633eecde3ce19fc7 (diff) |
Add support comparable type constraints for scalar values
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Change-Id: I57234399f23721506d308dfb8351067845ebe892
Issue-ID: SDC-4305
Diffstat (limited to 'openecomp-be/lib/openecomp-heat-lib/src/main/java')
2 files changed, 6 insertions, 3 deletions
diff --git a/openecomp-be/lib/openecomp-heat-lib/src/main/java/org/openecomp/sdc/heat/datatypes/ToscaScalarUnitTime.java b/openecomp-be/lib/openecomp-heat-lib/src/main/java/org/openecomp/sdc/heat/datatypes/ToscaScalarUnitTime.java index 081e06121e..f2f249d5fa 100644 --- a/openecomp-be/lib/openecomp-heat-lib/src/main/java/org/openecomp/sdc/heat/datatypes/ToscaScalarUnitTime.java +++ b/openecomp-be/lib/openecomp-heat-lib/src/main/java/org/openecomp/sdc/heat/datatypes/ToscaScalarUnitTime.java @@ -19,6 +19,6 @@ package org.openecomp.sdc.heat.datatypes; /** - * This enum is responsible for defining properties that have scalar values measured in size units. + * This enum is responsible for defining properties that have scalar values measured in time units. */ public enum ToscaScalarUnitTime {D, H, M, S, MS, US, NS} diff --git a/openecomp-be/lib/openecomp-heat-lib/src/main/java/org/openecomp/sdc/heat/datatypes/ToscaScalarUnitTypes.java b/openecomp-be/lib/openecomp-heat-lib/src/main/java/org/openecomp/sdc/heat/datatypes/ToscaScalarUnitTypes.java index d92ef4fc2e..b5123b5def 100644 --- a/openecomp-be/lib/openecomp-heat-lib/src/main/java/org/openecomp/sdc/heat/datatypes/ToscaScalarUnitTypes.java +++ b/openecomp-be/lib/openecomp-heat-lib/src/main/java/org/openecomp/sdc/heat/datatypes/ToscaScalarUnitTypes.java @@ -27,6 +27,9 @@ import lombok.Getter; @Getter @AllArgsConstructor public enum ToscaScalarUnitTypes { - SCALAR_UNIT_SIZE("scalar-unit.size"), SCALAR_UNIT_TIME("scalar-unit.time"), SCALAR_UNIT_FREQUENCY("scalar-unit.frequency"); - private String type; + SCALAR_UNIT_BITRATE("scalar-unit.bitrate"), + SCALAR_UNIT_SIZE("scalar-unit.size"), + SCALAR_UNIT_TIME("scalar-unit.time"), + SCALAR_UNIT_FREQUENCY("scalar-unit.frequency"); + private final String type; } |