Set service members public for DP2 simulator

This commit is contained in:
Chris Barratt 2022-10-17 11:04:37 +01:00
parent 8e3185cd9b
commit 8267ea597c
2 changed files with 4 additions and 4 deletions

View File

@ -26,17 +26,17 @@ public class MyFirstFlow implements RPCStartableFlow {
// JsonMarshallingService provides a Service for manipulating json // JsonMarshallingService provides a Service for manipulating json
@CordaInject @CordaInject
JsonMarshallingService jsonMarshallingService; public JsonMarshallingService jsonMarshallingService;
// FlowMessaging provides a service for establishing flow sessions between Virtual Nodes and // FlowMessaging provides a service for establishing flow sessions between Virtual Nodes and
// sending and receiving payloads between them // sending and receiving payloads between them
@CordaInject @CordaInject
FlowMessaging flowMessaging; public FlowMessaging flowMessaging;
// MemberLookup provides a service for looking up information about members of the Virtual Network which // MemberLookup provides a service for looking up information about members of the Virtual Network which
// this CorDapp is operating in. // this CorDapp is operating in.
@CordaInject @CordaInject
MemberLookup memberLookup; public MemberLookup memberLookup;
public MyFirstFlow() {} public MyFirstFlow() {}

View File

@ -23,7 +23,7 @@ public class MyFirstFlowResponder implements ResponderFlow {
// MemberLookup provides a service for looking up information about members of the Virtual Network which // MemberLookup provides a service for looking up information about members of the Virtual Network which
// this CorDapp is operating in. // this CorDapp is operating in.
@CordaInject @CordaInject
MemberLookup memberLookup; public MemberLookup memberLookup;
public MyFirstFlowResponder() {} public MyFirstFlowResponder() {}