ActivitySpec - Correcting logger messages
[sdc.git] / common / openecomp-tosca-datatype / src / main / java / org / openecomp / sdc / tosca / datatypes / model / TimeInterval.java
1 package org.openecomp.sdc.tosca.datatypes.model;
2
3 import java.sql.Timestamp;
4
5 public class TimeInterval {
6   private Timestamp start_time;
7   private Timestamp end_time;
8
9   public Timestamp getStart_time() {
10     return start_time;
11   }
12
13   public void setStart_time(Timestamp start_time) {
14     this.start_time = start_time;
15   }
16
17   public Timestamp getEnd_time() {
18     return end_time;
19   }
20
21   public void setEnd_time(Timestamp end_time) {
22     this.end_time = end_time;
23   }
24 }