fix #477: show target policy filters
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.cloudhandson.vpdbackoffice.domain.vpd;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public record VpdObjectFilterDetail(
|
||||
String objectOwner,
|
||||
String objectName,
|
||||
List<Row> rows
|
||||
) {
|
||||
|
||||
public String objectDisplayName() {
|
||||
return objectOwner + "." + objectName;
|
||||
}
|
||||
|
||||
public record Row(
|
||||
VpdPolicyView policy,
|
||||
VpdFunctionSource source
|
||||
) {
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,8 @@ public record VpdTargetView(
|
||||
String protectedYn,
|
||||
String ordsPath,
|
||||
int policyCount,
|
||||
String policyNames
|
||||
String policyNames,
|
||||
String filterNames
|
||||
) {
|
||||
|
||||
public String objectDisplayName() {
|
||||
|
||||
Reference in New Issue
Block a user