MINOR - Add UsageDetails to EntityInterface (#20111)

* MINOR - Add UsageDetails to EntityInterface

* fix
This commit is contained in:
Pere Miquel Brull 2025-03-07 12:14:52 +01:00 committed by GitHub
parent 97bce917be
commit 8b175944ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -56,6 +56,10 @@ public interface EntityInterface {
ChangeDescription getIncrementalChangeDescription();
default UsageDetails getUsageSummary() {
return null;
}
default List<EntityReference> getOwners() {
return null;
}
@ -128,6 +132,8 @@ public interface EntityInterface {
void setIncrementalChangeDescription(ChangeDescription incrementalChangeDescription);
default void setUsageSummary(UsageDetails usageSummary) {}
void setFullyQualifiedName(String fullyQualifiedName);
default void setDeleted(Boolean flag) {}