Updated to files to fit the Standard.
This commit is contained in:
@@ -47,4 +47,5 @@ public class TaskRunComponent {
|
||||
this.taskRunRepository.save(new TaskRunOutput("Executed at " + execDate));
|
||||
logger.info("Executed at : " + execDate);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -31,6 +31,7 @@ import jakarta.persistence.Table;
|
||||
@Entity
|
||||
@Table(name = "TASK_RUN_OUTPUT")
|
||||
public class TaskRunOutput {
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.AUTO)
|
||||
private Long id;
|
||||
@@ -64,4 +65,5 @@ public class TaskRunOutput {
|
||||
public String toString() {
|
||||
return "TaskRunOutput{" + "id=" + this.id + ", output='" + this.output + '\'' + '}';
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -23,4 +23,5 @@ import org.springframework.data.jpa.repository.JpaRepository;
|
||||
* @author Glenn Renfro
|
||||
*/
|
||||
public interface TaskRunRepository extends JpaRepository<TaskRunOutput, Long> {
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user