6b6ba0bfa08b50d5d671a8d6dd62155b7712bfa9
[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
20 package org.onap.optf.cmso.optimizer.availability.policies.model;
21
22 /*
23
24 {
25     "start_time": "00:00:00+00:00",
26     "end_time": "06:00:00+00:00"
27 }
28
29  */
30 public class TimeRange
31 {
32     private String start_time;
33     private String end_time;
34
35     public String getStart_time() {
36         return start_time;
37     }
38     public void setStart_time(String start_time) {
39         this.start_time = start_time;
40     }
41     public String getEnd_time() {
42         return end_time;
43     }
44     public void setEnd_time(String end_time) {
45         this.end_time = end_time;
46     }
47
48 }