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.OperationalScopeForXml;
33 import org.openecomp.sdc.vendorlicense.dao.types.xml.ThresholdForXml;
34 import org.openecomp.sdc.vendorlicense.dao.types.xml.LimitForXml;
36 import java.util.Collection;
39 public abstract class MixinLicenseKeyGroupEntityForVendorLicenseArtifact {
40 @JsonProperty(value = "license-key-group-uuid")
41 abstract String getVersionUuId();
44 abstract Set<String> getReferencingFeatureGroups();
46 @JsonProperty(value = "version")
47 abstract String getVersionForArtifact();
50 abstract String getVendorLicenseModelId();
54 abstract String getEntityType();
57 abstract String getFirstClassCitizenId();
59 @JsonProperty(value = "license-key-group-invariant-uuid")
60 abstract String getId();
64 abstract ChoiceOrOther<OperationalScope> getOperationalScope();
66 @JsonProperty(value = "operational-scope")
67 abstract OperationalScopeForXml getOperationalScopeForArtifact();
71 abstract LicenseKeyTypeForXml getTypeForArtifact();
74 abstract String getVersionableId();
76 @JsonProperty(value = "sp-limits")
77 abstract LimitForXml getSPLimits();
79 @JsonProperty(value = "vendor-limits")
80 abstract LimitForXml getVendorLimits();
83 abstract Collection<LimitEntity> getLimits();
85 @JsonProperty(value = "start-date")
86 abstract String getStartDate();
88 @JsonProperty(value = "expiry-date")
89 abstract String getExpiryDate();
91 @JsonProperty(value = "threshold-value")
92 abstract ThresholdForXml getThresholdForArtifact();
95 abstract String getThresholdUnits();
98 abstract float getThresholdValue();