Remove annotations in models
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / authorative / concepts / ToscaConstraint.java
index 4623b20..f00c243 100644 (file)
@@ -3,7 +3,7 @@
  * ONAP Policy Model
  * ================================================================================
  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
- * Modifications Copyright (C) 2019 Nordix Foundation.
+ * Modifications Copyright (C) 2019-2021 Nordix Foundation.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -34,7 +34,6 @@ import lombok.Data;
  */
 @Data
 public class ToscaConstraint {
-
     @SerializedName("valid_values")
     private List<String> validValues;
 
@@ -52,4 +51,6 @@ public class ToscaConstraint {
     @SerializedName("less_or_equal")
     private String lessOrEqual;
 
+    @SerializedName("in_range")
+    private List<String> rangeValues;
 }