X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=models-tosca%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fpolicy%2Fmodels%2Ftosca%2Fauthorative%2Fconcepts%2FToscaConstraint.java;h=f00c243c3e2751e9c6b04eb8a2f030f4234a6c2f;hb=80311ac0dedb0868d3837029c6e4b5fcb984efb2;hp=4623b20e86c18063dff2aba9af82fbc5b96c94f3;hpb=5eacd4c059625788887dd49672f739485aa32cf2;p=policy%2Fmodels.git diff --git a/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaConstraint.java b/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaConstraint.java index 4623b20e8..f00c243c3 100644 --- a/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaConstraint.java +++ b/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaConstraint.java @@ -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 validValues; @@ -52,4 +51,6 @@ public class ToscaConstraint { @SerializedName("less_or_equal") private String lessOrEqual; + @SerializedName("in_range") + private List rangeValues; }