re base code
[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.JsonProperty;
25 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
26 import org.openecomp.sdc.vendorlicense.dao.types.*;
27 import org.openecomp.sdc.vendorlicense.dao.types.xml.*;
28
29 import java.util.Collection;
30 import java.util.Set;
31
32 @JsonPropertyOrder({ "entitlement-pool-invariant-uuid", "entitlement-pool-uuid" })
33 public abstract class MixinEntitlementPoolEntityForVendorLicenseArtifact {
34   @JsonProperty(value = "threshold-value")
35   abstract ThresholdForXml getThresholdForArtifact();
36
37   @JsonProperty(value = "entitlement-pool-uuid")
38   abstract String getVersionUuId();
39
40   @JsonIgnore
41   abstract Set<String> getReferencingFeatureGroups();
42
43   @JsonIgnore
44   abstract String getFirstClassCitizenId();
45
46   @JsonProperty(value = "entitlement-pool-invariant-uuid")
47   abstract String getId();
48
49   @JsonProperty(value = "manufacturer-reference-number")
50   abstract String getManufacturerReferenceNumber();
51
52   @JsonProperty(value = "version")
53   abstract String getVersionForArtifact();
54
55   @JsonIgnore
56   abstract String getStartDate();
57
58   @JsonIgnore
59   abstract String getExpiryDate();
60
61   @JsonProperty(value = "start-date")
62   abstract String getIsoFormatStartDate();
63
64   @JsonProperty(value = "expiry-date")
65   abstract String getIsoFormatExpiryDate();
66
67   @JsonIgnore
68   abstract String getVendorLicenseModelId();
69
70
71
72   @JsonIgnore
73   abstract String getThresholdUnit();
74
75   @JsonIgnore
76   abstract float getThresholdValue();
77
78   @JsonIgnore
79   abstract ChoiceOrOther<EntitlementMetric> getEntitlementMetric();
80
81   @JsonIgnore
82   abstract ChoiceOrOther<EntitlementTime> getTime();
83
84   @JsonIgnore
85   abstract ChoiceOrOther<AggregationFunction> getAggregationFunction();
86
87   @JsonIgnore
88   abstract String getEntityType();
89
90   @JsonProperty(value = "operational-scope")
91   abstract OperationalScopeForXml getOperationalScopeForArtifact();
92
93   @JsonIgnore
94   abstract ChoiceOrOther<OperationalScope> getOperationalScope();
95
96   @JsonProperty(value = "entitlement-metric")
97   abstract EntitlementMetricForXml getEntitlementMetricForArtifact();
98
99   @JsonProperty(value = "time")
100   abstract EntitlementTimeForXml getTimeForArtifact();
101
102
103   @JsonProperty(value = "aggregation-function")
104   abstract AggregationFunctionForXml getAggregationFunctionForArtifact();
105
106   @JsonProperty(value = "sp-limits")
107   abstract LimitForXml getSPLimits();
108
109   @JsonProperty(value = "vendor-limits")
110   abstract LimitForXml getVendorLimits();
111
112   @JsonIgnore
113   abstract Collection<LimitEntity> getLimits();
114 }