[Developer] #424 show VPD policy function source

This commit is contained in:
devmrko
2026-06-25 11:10:20 +09:00
parent 56c6432d86
commit 86e2b252c9
8 changed files with 126 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
package com.cloudhandson.vpdbackoffice.domain.vpd;
public record VpdFunctionSource(
String owner,
String objectName,
String objectType,
String source
) {
public boolean found() {
return source != null && !source.isBlank();
}
}