[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 / MixinEntitlementPoolEntityForVnfArtifact.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.dataformat.xml.annotation.JacksonXmlElementWrapper;
27 import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
28 import org.openecomp.sdc.vendorlicense.dao.types.AggregationFunction;
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.xml.AggregationFunctionForXml;
35 import org.openecomp.sdc.vendorlicense.dao.types.xml.EntitlementMetricForXml;
36 import org.openecomp.sdc.vendorlicense.dao.types.xml.EntitlementTimeForXml;
37 import org.openecomp.sdc.vendorlicense.dao.types.xml.ThresholdForXml;
38 import org.openecomp.sdc.vendorlicense.dao.types.xml.LimitForXml;
39
40 import java.util.Collection;
41 import java.util.Set;
42
43 public abstract class MixinEntitlementPoolEntityForVnfArtifact {
44   @JsonProperty(value = "threshold-value")
45   abstract ThresholdForXml getThresholdForArtifact();
46
47   @JsonIgnore
48   abstract String getId();
49
50   @JsonProperty(value = "manufacturer-reference-number")
51   abstract String getManufacturerReferenceNumber();
52
53   @JsonIgnore
54   abstract Set<String> getReferencingFeatureGroups();
55
56   @JsonIgnore
57   abstract String getFirstClassCitizenId();
58
59   @JsonProperty(value = "entitlement-pool-uuid")
60   abstract String getVersionUuId();
61
62   @JsonIgnore
63   abstract String getVersion();
64
65   @JsonIgnore
66   abstract String getVersionForArtifact();
67
68   @JsonIgnore
69   abstract String getVendorLicenseModelId();
70
71   @JsonIgnore
72   abstract String getThresholdUnit();
73
74   @JsonIgnore
75   abstract float getThresholdValue();
76
77   @JsonInclude(JsonInclude.Include.NON_NULL)
78   abstract String getStartDate();
79
80   @JsonInclude(JsonInclude.Include.NON_NULL)
81   abstract String getExpiryDate();
82
83   @JsonIgnore
84   abstract ChoiceOrOther<EntitlementMetric> getEntitlementMetric();
85
86   @JsonIgnore
87   abstract ChoiceOrOther<EntitlementTime> getTime();
88
89   @JsonIgnore
90   abstract ChoiceOrOther<AggregationFunction> getAggregationFunction();
91
92   @JsonIgnore
93   abstract String getEntityType();
94
95   @JacksonXmlProperty(isAttribute = false, localName = "value")
96   @JacksonXmlElementWrapper(localName = "operational-scope")
97   abstract String getOperationalScopeForArtifact();
98
99   @JsonIgnore
100   abstract ChoiceOrOther<OperationalScope> getOperationalScope();
101
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
122 }