Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c2f8552

Browse files
committedFeb 3, 2025
feat(Provenance): Add a LocalProvenance sub-interface
In contrast to the previously added `RemoteProvenance` stands the `LocalProvenance`, which has no remote source, but instead references a local input of some kind. See [1] for more context on the new Provenance Hierarchy. [1]: oss-review-toolkit#8803 (comment) Signed-off-by: Jens Keim <[email protected]>
1 parent fd8adfb commit c2f8552

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎model/src/main/kotlin/Provenance.kt

+2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ sealed interface KnownProvenance : Provenance
4545

4646
sealed interface RemoteProvenance : KnownProvenance
4747

48+
sealed interface LocalProvenance : KnownProvenance
49+
4850
/**
4951
* Provenance information for a source artifact.
5052
*/

0 commit comments

Comments
 (0)
Please sign in to comment.