Skip to content

Commit 79737d8

Browse files
authored
Merge pull request #43 from dwasinge/master
Adding Launch Data To Engagement
2 parents bbc9f1e + c73593a commit 79737d8

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

src/main/java/com/redhat/labs/omp/models/Engagement.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,6 @@ public class Engagement {
3131
private String ocpSubDomain;
3232
private String ocpPersistentStorageSize;
3333
private String ocpClusterSize;
34+
private Launch launch;
3435

3536
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package com.redhat.labs.omp.models;
2+
3+
import java.time.LocalDateTime;
4+
5+
import lombok.AllArgsConstructor;
6+
import lombok.Builder;
7+
import lombok.Data;
8+
import lombok.NoArgsConstructor;
9+
10+
@Data
11+
@Builder
12+
@NoArgsConstructor
13+
@AllArgsConstructor
14+
public class Launch {
15+
16+
private LocalDateTime launchedDateTime;
17+
private String launchedBy;
18+
19+
}

0 commit comments

Comments
 (0)