[SDC] Onboarding 1710 rebase.
[sdc.git] / openecomp-be / lib / openecomp-sdc-vendor-license-lib / openecomp-sdc-vendor-license-core / src / main / java / org / openecomp / sdc / vendorlicense / licenseartifacts / impl / types / mixins / MixinEntitlementPoolEntityForVendorLicenseArtifact.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
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=========================================================
19  */
20
21 package org.openecomp.sdc.vendorlicense.licenseartifacts.impl.types.mixins;
22
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.ThresholdForXml;
39 import org.openecomp.sdc.vendorlicense.dao.types.xml.LimitForXml;
40
41 import java.util.Collection;
42 import java.util.Set;
43
44 @JsonPropertyOrder({ "entitlement-pool-invariant-uuid", "entitlement-pool-uuid" })
45 public abstract class MixinEntitlementPoolEntityForVendorLicenseArtifact {
46   @JsonProperty(value = "threshold-value")
47   abstract ThresholdForXml getThresholdForArtifact();
48
49   @JsonProperty(value = "entitlement-pool-uuid")
50   abstract String getVersionUuId();
51
52   @JsonIgnore
53   abstract Set<String> getReferencingFeatureGroups();
54
55   @JsonIgnore
56   abstract String getFirstClassCitizenId();
57
58   @JsonProperty(value = "entitlement-pool-invariant-uuid")
59   abstract String getId();
60
61   @JsonProperty(value = "manufacturer-reference-number")
62   abstract String getManufacturerReferenceNumber();
63
64   @JsonProperty(value = "version")
65   abstract String getVersionForArtifact();
66
67   @JsonInclude(JsonInclude.Include.NON_NULL)
68   abstract String getStartDate();
69
70   @JsonInclude(JsonInclude.Include.NON_NULL)
71   abstract String getExpiryDate();
72
73   @JsonIgnore
74   abstract String getVendorLicenseModelId();
75
76
77
78   @JsonIgnore
79   abstract String getThresholdUnit();
80
81   @JsonIgnore
82   abstract float getThresholdValue();
83
84   @JsonIgnore
85   abstract ChoiceOrOther<EntitlementMetric> getEntitlementMetric();
86
87   @JsonIgnore
88   abstract ChoiceOrOther<EntitlementTime> getTime();
89
90   @JsonIgnore
91   abstract ChoiceOrOther<AggregationFunction> getAggregationFunction();
92
93   @JsonIgnore
94   abstract String getEntityType();
95
96   @JacksonXmlProperty(localName = "value")
97   @JacksonXmlElementWrapper(localName = "operational-scope")
98   abstract String getOperationalScopeForArtifact();
99
100   @JsonIgnore
101   abstract ChoiceOrOther<OperationalScope> getOperationalScope();
102
103   @JsonProperty(value = "entitlement-metric")
104   abstract EntitlementMetricForXml getEntitlementMetricForArtifact();
105
106   @JsonProperty(value = "time")
107   abstract EntitlementTimeForXml getTimeForArtifact();
108
109
110   @JsonProperty(value = "aggregation-function")
111   abstract AggregationFunctionForXml getAggregationFunctionForArtifact();
112
113   @JsonProperty(value = "sp-limits")
114   abstract LimitForXml getSPLimits();
115
116   @JsonProperty(value = "vendor-limits")
117   abstract LimitForXml getVendorLimits();
118
119   @JsonIgnore
120   abstract Collection<LimitEntity> getLimits();
121 }