mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-27 15:38:43 +00:00
MINOR - Add UsageDetails to EntityInterface (#20111)
* MINOR - Add UsageDetails to EntityInterface * fix
This commit is contained in:
parent
97bce917be
commit
8b175944ee
@ -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) {}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user