dc0db0d96c1d27b3b2ec3d43a79b0b46f8c9b339
[sdc.git] /
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.OperationalScopeForXml;
39 import org.openecomp.sdc.vendorlicense.dao.types.xml.ThresholdForXml;
40 import org.openecomp.sdc.vendorlicense.dao.types.xml.LimitForXml;
41
42 import java.util.Collection;
43 import java.util.Set;
44
45 @JsonPropertyOrder({ "entitlement-pool-invariant-uuid", "entitlement-pool-uuid" })
46 public abstract class MixinEntitlementPoolEntityForVendorLicenseArtifact {
47   @JsonProperty(value = "threshold-value")
48   abstract ThresholdForXml getThresholdForArtifact();
49
50   @JsonProperty(value = "entitlement-pool-uuid")
51   abstract String getVersionUuId();
52
53   @JsonIgnore
54   abstract Set<String> getReferencingFeatureGroups();
55
56   @JsonIgnore
57   abstract String getFirstClassCitizenId();
58
59   @JsonProperty(value = "entitlement-pool-invariant-uuid")
60   abstract String getId();
61
62   @JsonProperty(value = "manufacturer-reference-number")
63   abstract String getManufacturerReferenceNumber();
64
65   @JsonProperty(value = "version")
66   abstract String getVersionForArtifact();
67
68   @JsonProperty(value = "start-date")
69   abstract String getStartDate();
70
71   @JsonProperty(value = "expiry-date")
72   abstract String getExpiryDate();
73
74   @JsonIgnore
75   abstract String getVendorLicenseModelId();
76
77
78
79   @JsonIgnore
80   abstract String getThresholdUnit();
81
82   @JsonIgnore
83   abstract float getThresholdValue();
84
85   @JsonIgnore
86   abstract ChoiceOrOther<EntitlementMetric> getEntitlementMetric();
87
88   @JsonIgnore
89   abstract ChoiceOrOther<EntitlementTime> getTime();
90
91   @JsonIgnore
92   abstract ChoiceOrOther<AggregationFunction> getAggregationFunction();
93
94   @JsonIgnore
95   abstract String getEntityType();
96
97   @JsonProperty(value = "operational-scope")
98   abstract OperationalScopeForXml 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 }