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