9c31a9fd7080df370da5f226f3810546ce7fff19
[optf/cmso.git] /
1 /*
2  *  ============LICENSE_START==============================================
3  *  Copyright (c) 2019 AT&T Intellectual Property.
4  *  =======================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License"); you may
6  *  not use this file except in compliance with the License. You may obtain a
7  *  copy of the License at
8  *
9  *         http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing
15  * permissions and limitations under the License.
16  * ============LICENSE_END=================================================
17  */
18
19 package org.onap.optf.cmso.optimizer.clients.optimizer.models;
20
21 import java.util.List;
22
23 /*
24
25  */
26 public class OptimizerResults {
27     private Long elapsedMillis;
28     private List<OptimizerSchedule> schedules;
29
30     public Long getElapsedMillis() {
31         return elapsedMillis;
32     }
33
34     public void setElapsedMillis(Long elapsed_millis) {
35         this.elapsedMillis = elapsed_millis;
36     }
37
38     public List<OptimizerSchedule> getSchedules() {
39         return schedules;
40     }
41
42     public void setSchedules(List<OptimizerSchedule> schedules) {
43         this.schedules = schedules;
44     }
45
46 }