Adding Copyright Missing files
[oam/tr069-adapter.git] / ves-agent / src / main / java / org / commscope / tr069adapter / vesagent / timer / ScheduleInfo.java
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : tr-069-adapter
4  * =================================================================================================
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.
6  * =================================================================================================
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You
9  * may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
14  * either express or implied. See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ===============LICENSE_END=======================================================================
17  */
18
19 package org.commscope.tr069adapter.vesagent.timer;\r
20 \r
21 import java.util.concurrent.TimeUnit;\r
22 \r
23 /**\r
24  * \r
25  * @version 1.0\r
26  * @since June 5, 2020\r
27  * @author Prashant Kumar\r
28  */\r
29 \r
30 public class ScheduleInfo {\r
31   private int interval;\r
32   private TimeUnit timeUnit;\r
33 \r
34   public int getInterval() {\r
35     return interval;\r
36   }\r
37 \r
38   public void setInterval(int interval) {\r
39     this.interval = interval;\r
40   }\r
41 \r
42   public TimeUnit getTimeUnit() {\r
43     return timeUnit;\r
44   }\r
45 \r
46   public void setTimeUnit(TimeUnit timeUnit) {\r
47     this.timeUnit = timeUnit;\r
48   }\r
49 \r
50 }\r