Hyperledger Composer ACL条件中绑定变量的描述



我正在尝试确定Hyperledger Composer ACL条件中绑定了哪些变量。文档只是说这个条件是一个绑定变量上的布尔JavaScript表达式。在哪里可以找到边界周围的变量?

rule R2 {
description: "regulator with ID Bill can not update a Car if they own it"
participant(r): "org.example.Regulator#Bill"
operation: UPDATE
resource(c): "org.example.Car"
condition: (c.owner == r)
action: DENY
}

r是绑定到参与者的变量,c是绑定到资源的变量希望您这样问是因为您正试图摆脱现有的composer实现,因为composer现在已经寿终正寝了。

相关内容

  • 没有找到相关文章

最新更新