/*- * ============LICENSE_START======================================================= * SDC * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ============LICENSE_END========================================================= */ package org.openecomp.sdc.vendorlicense.licenseartifacts.impl.types.mixins; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import org.openecomp.sdc.vendorlicense.dao.types.*; import org.openecomp.sdc.vendorlicense.dao.types.xml.*; import java.util.Collection; import java.util.Set; @JsonPropertyOrder({ "entitlement-pool-invariant-uuid", "entitlement-pool-uuid" }) public abstract class MixinEntitlementPoolEntityForVendorLicenseArtifact { @JsonProperty(value = "threshold-value") abstract ThresholdForXml getThresholdForArtifact(); @JsonProperty(value = "entitlement-pool-uuid") abstract String getVersionUuId(); @JsonIgnore abstract Set getReferencingFeatureGroups(); @JsonIgnore abstract String getFirstClassCitizenId(); @JsonProperty(value = "entitlement-pool-invariant-uuid") abstract String getId(); @JsonProperty(value = "manufacturer-reference-number") abstract String getManufacturerReferenceNumber(); @JsonProperty(value = "version") abstract String getVersionForArtifact(); @JsonIgnore abstract String getStartDate(); @JsonIgnore abstract String getExpiryDate(); @JsonProperty(value = "start-date") abstract String getIsoFormatStartDate(); @JsonProperty(value = "expiry-date") abstract String getIsoFormatExpiryDate(); @JsonIgnore abstract String getVendorLicenseModelId(); @JsonIgnore abstract String getThresholdUnit(); @JsonIgnore abstract float getThresholdValue(); @JsonIgnore abstract ChoiceOrOther getEntitlementMetric(); @JsonIgnore abstract ChoiceOrOther getTime(); @JsonIgnore abstract ChoiceOrOther getAggregationFunction(); @JsonIgnore abstract String getEntityType(); @JsonProperty(value = "operational-scope") abstract OperationalScopeForXml getOperationalScopeForArtifact(); @JsonIgnore abstract ChoiceOrOther getOperationalScope(); @JsonProperty(value = "entitlement-metric") abstract EntitlementMetricForXml getEntitlementMetricForArtifact(); @JsonProperty(value = "time") abstract EntitlementTimeForXml getTimeForArtifact(); @JsonProperty(value = "aggregation-function") abstract AggregationFunctionForXml getAggregationFunctionForArtifact(); @JsonProperty(value = "sp-limits") abstract LimitForXml getSPLimits(); @JsonProperty(value = "vendor-limits") abstract LimitForXml getVendorLimits(); @JsonIgnore abstract Collection getLimits(); }