forked from datahub-project/datahub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(api): add AuditStamp to the V3 API entity/aspect response
- Loading branch information
1 parent
d6e46b9
commit 8535478
Showing
5 changed files
with
76 additions
and
25 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
.../openapi-servlet/models/src/main/java/io/datahubproject/openapi/v3/models/AspectItem.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package io.datahubproject.openapi.v3.models; | ||
|
||
import com.linkedin.common.AuditStamp; | ||
import com.linkedin.data.template.RecordTemplate; | ||
import com.linkedin.mxe.SystemMetadata; | ||
import lombok.Builder; | ||
import lombok.Value; | ||
|
||
@Builder(toBuilder = true) | ||
@Value | ||
public class AspectItem { | ||
RecordTemplate aspect; | ||
SystemMetadata systemMetadata; | ||
AuditStamp auditStamp; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters