78bf531e827b857e07880f4fc04a3bb5d5c2dc58
[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.ChoiceOrOther;
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.LicenseKeyTypeForXml;
32 import org.openecomp.sdc.vendorlicense.dao.types.xml.OperationalScopeForXml;
33 import org.openecomp.sdc.vendorlicense.dao.types.xml.ThresholdForXml;
34 import org.openecomp.sdc.vendorlicense.dao.types.xml.LimitForXml;
35
36 import java.util.Collection;
37 import java.util.Set;
38
39 public abstract class MixinLicenseKeyGroupEntityForVendorLicenseArtifact {
40   @JsonProperty(value = "license-key-group-uuid")
41   abstract String getVersionUuId();
42
43   @JsonIgnore
44   abstract Set<String> getReferencingFeatureGroups();
45
46   @JsonProperty(value = "version")
47   abstract String getVersionForArtifact();
48
49   @JsonIgnore
50   abstract String getVendorLicenseModelId();
51
52
53   @JsonIgnore
54   abstract String getEntityType();
55
56   @JsonIgnore
57   abstract String getFirstClassCitizenId();
58
59   @JsonProperty(value = "license-key-group-invariant-uuid")
60   abstract String getId();
61
62
63   @JsonIgnore
64   abstract ChoiceOrOther<OperationalScope> getOperationalScope();
65
66   @JsonProperty(value = "operational-scope")
67   abstract OperationalScopeForXml getOperationalScopeForArtifact();
68
69
70   @JsonIgnore
71   abstract LicenseKeyTypeForXml getTypeForArtifact();
72
73   @JsonIgnore
74   abstract String getVersionableId();
75
76   @JsonProperty(value = "sp-limits")
77   abstract LimitForXml getSPLimits();
78
79   @JsonProperty(value = "vendor-limits")
80   abstract LimitForXml getVendorLimits();
81
82   @JsonIgnore
83   abstract Collection<LimitEntity> getLimits();
84
85   @JsonProperty(value = "start-date")
86   abstract String getStartDate();
87
88   @JsonProperty(value = "expiry-date")
89   abstract String getExpiryDate();
90
91   @JsonProperty(value = "threshold-value")
92   abstract ThresholdForXml getThresholdForArtifact();
93
94   @JsonIgnore
95   abstract String getThresholdUnits();
96
97   @JsonIgnore
98   abstract float getThresholdValue();
99
100 }