diff options
10 files changed, 31 insertions, 53 deletions
diff --git a/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PdpStatistics.java b/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PdpStatistics.java deleted file mode 100644 index eb42be691..000000000 --- a/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PdpStatistics.java +++ /dev/null @@ -1,44 +0,0 @@ -/*- - * ============LICENSE_START======================================================= - * Copyright (C) 2019 Nordix Foundation. - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - * ============LICENSE_END========================================================= - */ - -package org.onap.policy.models.pap.concepts; - -import lombok.Getter; -import lombok.Setter; -import lombok.ToString; - -/** - * Class to represent statistics of a PDP instance. - * - * @author Ram Krishna Verma (ram.krishna.verma@est.tech) - */ -@Getter -@Setter -@ToString -public class PdpStatistics { - - private String pdpInstanceId; - private long policyDeployCount; - private long policyDeploySuccessCount; - private long policyDeployFailCount; - private long policyExecutedCount; - private long policyExecutedSuccessCount; - private long policyExecutedFailCount; -} diff --git a/models-pdp/src/main/java/org/onap/policy/models/pdp/concepts/PdpStatistics.java b/models-pdp/src/main/java/org/onap/policy/models/pdp/concepts/PdpStatistics.java index 6f9b9c9d6..36e8d00f8 100644 --- a/models-pdp/src/main/java/org/onap/policy/models/pdp/concepts/PdpStatistics.java +++ b/models-pdp/src/main/java/org/onap/policy/models/pdp/concepts/PdpStatistics.java @@ -35,9 +35,10 @@ import lombok.ToString; @ToString public class PdpStatistics { - private long policyDownloadCount; - private long policyDownloadSuccessCount; - private long policyDownloadFailCount; + private String pdpInstanceId; + private long policyDeployCount; + private long policyDeploySuccessCount; + private long policyDeployFailCount; private long policyExecutedCount; private long policyExecutedSuccessCount; private long policyExecutedFailCount; diff --git a/models-tosca/pom.xml b/models-tosca/pom.xml index c8fa2520a..5b857c13b 100644 --- a/models-tosca/pom.xml +++ b/models-tosca/pom.xml @@ -68,6 +68,11 @@ <artifactId>mariadb-java-client</artifactId> <scope>test</scope> </dependency> + + <dependency> + <groupId>io.swagger</groupId> + <artifactId>swagger-jersey2-jaxrs</artifactId> + </dependency> </dependencies> </project> 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..582b73cc6 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 @@ -24,6 +24,7 @@ package org.onap.policy.models.tosca.authorative.concepts; import com.google.gson.annotations.SerializedName; +import io.swagger.annotations.ApiModelProperty; import java.util.List; import lombok.Data; @@ -35,20 +36,25 @@ import lombok.Data; @Data public class ToscaConstraint { + @ApiModelProperty(name = "valid_values") @SerializedName("valid_values") private List<String> validValues; private String equal; + @ApiModelProperty(name = "greater_than") @SerializedName("greater_than") private String greaterThan; + @ApiModelProperty(name = "greater_or_equal") @SerializedName("greater_or_equal") private String greaterOrEqual; + @ApiModelProperty(name = "less_than") @SerializedName("less_than") private String lessThan; + @ApiModelProperty(name = "less_or_equal") @SerializedName("less_or_equal") private String lessOrEqual; diff --git a/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaEntity.java b/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaEntity.java index a61f2a781..9d327a2ca 100644 --- a/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaEntity.java +++ b/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaEntity.java @@ -23,15 +23,13 @@ package org.onap.policy.models.tosca.authorative.concepts; import com.google.gson.annotations.SerializedName; - +import io.swagger.annotations.ApiModelProperty; import java.util.LinkedHashMap; import java.util.Map; import java.util.Map.Entry; - import lombok.Data; import lombok.NoArgsConstructor; import lombok.NonNull; - import org.onap.policy.models.base.PfNameVersion; /** @@ -46,6 +44,7 @@ public class ToscaEntity implements PfNameVersion { private String version; + @ApiModelProperty(name = "derived_from") @SerializedName("derived_from") private String derivedFrom; diff --git a/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaPolicy.java b/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaPolicy.java index 38c68599d..6463abc84 100644 --- a/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaPolicy.java +++ b/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaPolicy.java @@ -26,7 +26,6 @@ package org.onap.policy.models.tosca.authorative.concepts; import java.util.LinkedHashMap; import java.util.Map; import java.util.Map.Entry; - import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; diff --git a/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaProperty.java b/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaProperty.java index 84f798bc9..00005f2f8 100644 --- a/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaProperty.java +++ b/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaProperty.java @@ -24,6 +24,7 @@ package org.onap.policy.models.tosca.authorative.concepts; import com.google.gson.annotations.SerializedName; +import io.swagger.annotations.ApiModelProperty; import java.util.List; import lombok.Data; @@ -46,6 +47,7 @@ public class ToscaProperty { private String description; + @ApiModelProperty(name = "default") @SerializedName("default") private String defaultValue; @@ -55,6 +57,7 @@ public class ToscaProperty { private List<ToscaConstraint> constraints; + @ApiModelProperty(name = "entry_schema") @SerializedName("entry_schema") private ToscaEntrySchema entrySchema; } diff --git a/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaServiceTemplate.java b/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaServiceTemplate.java index a9a1783d7..0b19708dc 100644 --- a/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaServiceTemplate.java +++ b/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaServiceTemplate.java @@ -24,6 +24,7 @@ package org.onap.policy.models.tosca.authorative.concepts; import com.google.gson.annotations.SerializedName; +import io.swagger.annotations.ApiModelProperty; import java.util.List; import java.util.Map; import lombok.Data; @@ -38,15 +39,19 @@ import lombok.EqualsAndHashCode; @EqualsAndHashCode(callSuper = true) public class ToscaServiceTemplate extends ToscaEntity { + @ApiModelProperty(name = "tosca_definitions_version") @SerializedName("tosca_definitions_version") private String toscaDefinitionsVersion; + @ApiModelProperty(name = "topology_template") @SerializedName("topology_template") private ToscaTopologyTemplate toscaTopologyTemplate; + @ApiModelProperty(name = "policy_types") @SerializedName("policy_types") private List<Map<String, ToscaPolicyType>> policyTypes; + @ApiModelProperty(name = "data_types") @SerializedName("data_types") private List<Map<String, ToscaDataType>> dataTypes; }
\ No newline at end of file diff --git a/models-tosca/src/main/java/org/onap/policy/models/tosca/legacy/concepts/LegacyGuardPolicyInput.java b/models-tosca/src/main/java/org/onap/policy/models/tosca/legacy/concepts/LegacyGuardPolicyInput.java index 18853c100..819fcba75 100644 --- a/models-tosca/src/main/java/org/onap/policy/models/tosca/legacy/concepts/LegacyGuardPolicyInput.java +++ b/models-tosca/src/main/java/org/onap/policy/models/tosca/legacy/concepts/LegacyGuardPolicyInput.java @@ -22,7 +22,7 @@ package org.onap.policy.models.tosca.legacy.concepts; import com.google.gson.annotations.SerializedName; - +import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** @@ -33,9 +33,11 @@ import lombok.Data; @Data public class LegacyGuardPolicyInput { + @ApiModelProperty(name = "policy-id") @SerializedName("policy-id") private String policyId; + @ApiModelProperty(name = "policy-version") @SerializedName("policy-version") private String policyVersion; diff --git a/models-tosca/src/main/java/org/onap/policy/models/tosca/legacy/concepts/LegacyOperationalPolicy.java b/models-tosca/src/main/java/org/onap/policy/models/tosca/legacy/concepts/LegacyOperationalPolicy.java index 1db4d6e20..70453da76 100644 --- a/models-tosca/src/main/java/org/onap/policy/models/tosca/legacy/concepts/LegacyOperationalPolicy.java +++ b/models-tosca/src/main/java/org/onap/policy/models/tosca/legacy/concepts/LegacyOperationalPolicy.java @@ -22,7 +22,7 @@ package org.onap.policy.models.tosca.legacy.concepts; import com.google.gson.annotations.SerializedName; - +import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** @@ -33,9 +33,11 @@ import lombok.Data; @Data public class LegacyOperationalPolicy { + @ApiModelProperty(name = "policy-id") @SerializedName("policy-id") private String policyId; + @ApiModelProperty(name = "policy-version") @SerializedName("policy-version") private String policyVersion; |