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