TCA: Replace any openecomp reference by onap
[dcaegen2/analytics/tca.git] / dcae-analytics-model / src / main / java / org / onap / dcae / apod / analytics / model / domain / cef / MeasurementsForVfScalingFields.java
1 /*
2  * ===============================LICENSE_START======================================
3  *  dcae-analytics
4  * ================================================================================
5  *    Copyright © 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.onap.dcae.apod.analytics.model.domain.cef;
22
23 import lombok.Data;
24 import lombok.EqualsAndHashCode;
25
26 import java.util.List;
27
28 /**
29  * Common Event Format - MeasurementsForVfScaling fields
30  * <p>
31  * @author Rajiv Singla. Creation Date: 08/15/2017.
32  */
33 @Data
34 @EqualsAndHashCode(callSuper = true)
35 public class MeasurementsForVfScalingFields extends BaseCEFModel {
36
37     private static final long serialVersionUID = 1L;
38
39     /**
40      * Additional name-value-pair fields
41      *
42      * @param additionalFields New value for additional name-value-pair fields
43      * @return Additional name-value-pair fields
44      */
45     private List<Field> additionalFields;
46
47
48     /**
49      * Array of named name-value-pair arrays for additional Measurements
50      *
51      * @param additionalMeasurements New value for array of named name-value-pair arrays for additional Measurements
52      * @return Array of named name-value-pair arrays for additional Measurements
53      */
54     private List<NamedArrayOfFields> additionalMeasurements;
55
56     /**
57      * Interval over which measurements are being reported in seconds
58      *
59      * @param measurementInterval New value for measurement Interval
60      * @return Interval over which measurements are being reported in seconds
61      */
62     private Long measurementInterval;
63
64     /**
65      * Version of the measurementsForVfScaling block
66      *
67      * @param measurementsForVfScalingVersion New value for measurementsForVfScaling block
68      * @return Version of the measurementsForVfScaling block
69      */
70     private Float measurementsForVfScalingVersion;
71
72     /**
73      * Usage of an array of virtual network interface cards
74      *
75      * @param vNicPerformanceArray New value for Usage of an array of virtual network interface cards
76      * @return Usage of an array of virtual network interface cards
77      */
78     private List<VNicPerformance> vNicPerformanceArray;
79
80
81 }