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