File tree Expand file tree Collapse file tree
sdk/src/main/java/com/hedera/hashgraph/sdk Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ package com .hedera .hashgraph .sdk ;
2+
3+ import java .util .concurrent .CompletableFuture ;
4+
5+ public class RegisteredNodeAddressBookQuery {
6+ // TODO: Implementation should be deferred until the mirror node API is available
7+ private String nodeType ;
8+
9+ public RegisteredNodeAddressBookQuery setNodeType (String nodeType ) {
10+ this .nodeType = nodeType ;
11+ return this ;
12+ }
13+
14+ public String getNodeType () {
15+ return this .nodeType ;
16+ }
17+
18+ public RegisteredNodeAddressBook execute (Client client ) {
19+ throw new RuntimeException ("Method not implemented" );
20+ }
21+
22+ private CompletableFuture <String > executeMirrorNodeRequest (Client client ) {
23+ throw new RuntimeException ("Method not implemented" );
24+ }
25+
26+ private RegisteredNodeAddressBook parseRegisterNodeAddressBook (String responseBody ) {
27+ throw new RuntimeException ("Method not implemented" );
28+ }
29+ }
You can’t perform that action at this time.
0 commit comments