Add DAO module for Models
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / ToscaTimeInterval.java
@@ -20,7 +20,7 @@
  * ============LICENSE_END=========================================================
  */
 
-package org.onap.policy.model.tosca;
+package org.onap.policy.models.tosca;
 
 import com.google.gson.annotations.SerializedName;
 import lombok.Getter;
@@ -28,14 +28,13 @@ import lombok.Setter;
 import lombok.ToString;
 
 /**
- * Class to represent the TimeInterval in TOSCA definition
+ * Class to represent the TimeInterval in TOSCA definition.
  *
  * @author Chenfei Gao (cgao@research.att.com)
  *
  */
 @ToString
 public class ToscaTimeInterval {
-
     @Getter
     @Setter
     @SerializedName("start_time")
@@ -45,4 +44,5 @@ public class ToscaTimeInterval {
     @Setter
     @SerializedName("end_time")
     private String endTime;
+
 }
\ No newline at end of file