fix #557: guide permission-driven VPD flow
This commit is contained in:
@@ -54,4 +54,28 @@ public interface VpdPolicyMapper {
|
||||
@Param("objectName") String objectName,
|
||||
@Param("objectType") String objectType
|
||||
);
|
||||
|
||||
String findPolicyDescription(
|
||||
@Param("objectOwner") String objectOwner,
|
||||
@Param("objectName") String objectName,
|
||||
@Param("policyName") String policyName
|
||||
);
|
||||
|
||||
String findFilterDescription(
|
||||
@Param("functionOwner") String functionOwner,
|
||||
@Param("functionName") String functionName
|
||||
);
|
||||
|
||||
int upsertPolicyDescription(
|
||||
@Param("objectOwner") String objectOwner,
|
||||
@Param("objectName") String objectName,
|
||||
@Param("policyName") String policyName,
|
||||
@Param("description") String description
|
||||
);
|
||||
|
||||
int upsertFilterDescription(
|
||||
@Param("functionOwner") String functionOwner,
|
||||
@Param("functionName") String functionName,
|
||||
@Param("description") String description
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user