假设我分别创建了两个参与者类型 A 和 B,以及一个只能由参与者类型 B 或管理员执行的事务 X。
此外,我添加了一些权限规则,参与者 A 只能由管理员或类型 A 的其他参与者创建/更新。
现在,我在事务 X 中的逻辑需要创建/更新参与者 A。所以,如果我使用执行事务 X参与者 B 注册 ID 之一,是否能够创建/更新参与者 A?
如果没有,那么有什么办法可以做到吗?
问问题
45 次
1 回答
2
如果我正确理解了您的要求,那么这些规则应该适用于您想要的核心:(此示例使用默认的基本示例网络)
rule BforX {
description: "Allow B access to transaction X"
participant: "org.example.basic.SampleParticipantB"
operation: READ, CREATE, UPDATE
resource: "org.example.basic.SampleTransactionX"
action: ALLOW
}
rule BforAinX {
description: "Allow B access to A whilst in X"
participant: "org.example.basic.SampleParticipantB"
operation: READ, CREATE, UPDATE
resource: "org.example.basic.SampleParticipantA"
transaction: "org.example.basic.SampleTransactionX"
action: ALLOW
}
rule NotAforX {
description: "Deny A access to transaction X"
participant: "org.example.basic.SampleParticipantA"
operation: ALL
resource: "org.example.basic.SampleTransactionX"
action: DENY
}
rule AforA {
description: "Allow A access to Participant_A"
participant: "org.example.basic.SampleParticipantA"
operation: READ, CREATE, UPDATE
resource: "org.example.basic.SampleParticipantA"
action: ALLOW
}
于 2018-10-01T13:55:04.563 回答