Skip to content

Commit

Permalink
CORE-14355 Interop / Rename Facade Service method (#1163)
Browse files Browse the repository at this point in the history
FacadeService is returning not the Facade but the proxy binding it to TokensFacade. Rename the method to "getProxy".
  • Loading branch information
szymonsztuka authored Jul 7, 2023
1 parent a922f47 commit ffa34ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public interface FacadeService {
* instance invokes a Facade method on a peer Identity denoted by an <code>alias</code> from an <code>interopGroup</code>.
*/
@Suspendable
<T> T getFacade(String facadeId, Class<T> expectedType, MemberX500Name alias, String interopGroup);
<T> T getProxy(String facadeId, Class<T> expectedType, MemberX500Name alias, String interopGroup);

/**
* Interprets a Facade request and invokes a matching method on the target class.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cordaProductVersion = 5.1.0-INTEROP
## IMPORTANT:
## The interop feature branches track api revisions separately to the mainline branch.
## API version of last merge from corda mainline: 5
cordaApiRevision = 12
cordaApiRevision = 13

# Main
kotlinVersion = 1.8.21
Expand Down

0 comments on commit ffa34ff

Please sign in to comment.