2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.openecomp.sdc.vendorlicense.licenseartifacts.impl.types.mixins;
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;
36 import java.util.Collection;
39 public abstract class MixinLicenseKeyGroupEntityForVnfArtifact {
41 abstract String getId();
43 @JsonProperty(value = "manufacturer-reference-number")
44 abstract String getManufacturerReferenceNumber();
47 abstract Set<String> getReferencingFeatureGroups();
50 abstract String getVersion();
53 abstract String getVersionForArtifact();
56 abstract String getVendorLicenseModelId();
60 abstract String getEntityType();
62 @JsonProperty(value = "license-key-group-uuid")
63 abstract String getVersionUuId();
66 abstract String getFirstClassCitizenId();
70 abstract ChoiceOrOther<OperationalScope> getOperationalScope();
72 @JsonProperty(value = "operational-scope")
73 abstract OperationalScopeForXml getOperationalScopeForArtifact();
77 abstract LicenseKeyTypeForXml getTypeForArtifact();
80 abstract String getVersionableId();
82 @JsonProperty(value = "threshold-value")
83 abstract ThresholdForXml getThresholdForArtifact();
84 @JsonProperty(value = "sp-limits")
85 abstract LimitForXml getSPLimits();
87 @JsonProperty(value = "vendor-limits")
88 abstract LimitForXml getVendorLimits();
91 abstract Collection<LimitEntity> getLimits();
93 @JsonProperty(value = "start-date")
94 abstract String getStartDate();
96 @JsonProperty(value = "expiry-date")
97 abstract String getExpiryDate();
100 abstract String getThresholdUnits();
103 abstract float getThresholdValue();