8a2d17d9ff1f4e995da3495c375534422f09ce3e
[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.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.OperationalScopeForXml;
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 public abstract class MixinEntitlementPoolEntityForVnfArtifact {
45   @JsonProperty(value = "threshold-value")
46   abstract ThresholdForXml getThresholdForArtifact();
47
48   @JsonIgnore
49   abstract String getId();
50
51   @JsonProperty(value = "manufacturer-reference-number")
52   abstract String getManufacturerReferenceNumber();
53
54   @JsonIgnore
55   abstract Set<String> getReferencingFeatureGroups();
56
57   @JsonIgnore
58   abstract String getFirstClassCitizenId();
59
60   @JsonProperty(value = "entitlement-pool-uuid")
61   abstract String getVersionUuId();
62
63   @JsonIgnore
64   abstract String getVersion();
65
66   @JsonIgnore
67   abstract String getVersionForArtifact();
68
69   @JsonIgnore
70   abstract String getVendorLicenseModelId();
71
72   @JsonIgnore
73   abstract String getThresholdUnit();
74
75   @JsonIgnore
76   abstract float getThresholdValue();
77
78   @JsonProperty(value = "start-date")
79   abstract String getStartDate();
80
81   @JsonProperty(value = "expiry-date")
82   abstract String getExpiryDate();
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   @JsonProperty(value = "operational-scope")
97   abstract OperationalScopeForXml 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 }