2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
21 package org.openecomp.sdc.vendorlicense.licenseartifacts.impl.types.mixins;
23 import com.fasterxml.jackson.annotation.JsonIgnore;
24 import com.fasterxml.jackson.annotation.JsonInclude;
25 import com.fasterxml.jackson.annotation.JsonProperty;
26 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
27 import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper;
28 import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
29 import org.openecomp.sdc.vendorlicense.dao.types.ChoiceOrOther;
30 import org.openecomp.sdc.vendorlicense.dao.types.EntitlementMetric;
31 import org.openecomp.sdc.vendorlicense.dao.types.EntitlementTime;
32 import org.openecomp.sdc.vendorlicense.dao.types.LimitEntity;
33 import org.openecomp.sdc.vendorlicense.dao.types.OperationalScope;
34 import org.openecomp.sdc.vendorlicense.dao.types.AggregationFunction;
35 import org.openecomp.sdc.vendorlicense.dao.types.xml.AggregationFunctionForXml;
36 import org.openecomp.sdc.vendorlicense.dao.types.xml.EntitlementMetricForXml;
37 import org.openecomp.sdc.vendorlicense.dao.types.xml.EntitlementTimeForXml;
38 import org.openecomp.sdc.vendorlicense.dao.types.xml.OperationalScopeForXml;
39 import org.openecomp.sdc.vendorlicense.dao.types.xml.ThresholdForXml;
40 import org.openecomp.sdc.vendorlicense.dao.types.xml.LimitForXml;
42 import java.util.Collection;
45 @JsonPropertyOrder({ "entitlement-pool-invariant-uuid", "entitlement-pool-uuid" })
46 public abstract class MixinEntitlementPoolEntityForVendorLicenseArtifact {
47 @JsonProperty(value = "threshold-value")
48 abstract ThresholdForXml getThresholdForArtifact();
50 @JsonProperty(value = "entitlement-pool-uuid")
51 abstract String getVersionUuId();
54 abstract Set<String> getReferencingFeatureGroups();
57 abstract String getFirstClassCitizenId();
59 @JsonProperty(value = "entitlement-pool-invariant-uuid")
60 abstract String getId();
62 @JsonProperty(value = "manufacturer-reference-number")
63 abstract String getManufacturerReferenceNumber();
65 @JsonProperty(value = "version")
66 abstract String getVersionForArtifact();
68 @JsonProperty(value = "start-date")
69 abstract String getStartDate();
71 @JsonProperty(value = "expiry-date")
72 abstract String getExpiryDate();
75 abstract String getVendorLicenseModelId();
80 abstract String getThresholdUnit();
83 abstract float getThresholdValue();
86 abstract ChoiceOrOther<EntitlementMetric> getEntitlementMetric();
89 abstract ChoiceOrOther<EntitlementTime> getTime();
92 abstract ChoiceOrOther<AggregationFunction> getAggregationFunction();
95 abstract String getEntityType();
97 @JsonProperty(value = "operational-scope")
98 abstract OperationalScopeForXml getOperationalScopeForArtifact();
101 abstract ChoiceOrOther<OperationalScope> getOperationalScope();
103 @JsonProperty(value = "entitlement-metric")
104 abstract EntitlementMetricForXml getEntitlementMetricForArtifact();
106 @JsonProperty(value = "time")
107 abstract EntitlementTimeForXml getTimeForArtifact();
110 @JsonProperty(value = "aggregation-function")
111 abstract AggregationFunctionForXml getAggregationFunctionForArtifact();
113 @JsonProperty(value = "sp-limits")
114 abstract LimitForXml getSPLimits();
116 @JsonProperty(value = "vendor-limits")
117 abstract LimitForXml getVendorLimits();
120 abstract Collection<LimitEntity> getLimits();