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