@@ -22,19 +22,19 @@ public class MergeApiClient {
22
22
23
23
protected final Supplier <FilestorageClient > filestorageClient ;
24
24
25
- protected final Supplier <HrisClient > hrisClient ;
26
-
27
25
protected final Supplier <TicketingClient > ticketingClient ;
28
26
27
+ protected final Supplier <HrisClient > hrisClient ;
28
+
29
29
protected final Supplier <AccountingClient > accountingClient ;
30
30
31
31
public MergeApiClient (ClientOptions clientOptions ) {
32
32
this .clientOptions = clientOptions ;
33
33
this .atsClient = Suppliers .memoize (() -> new AtsClient (clientOptions ));
34
34
this .crmClient = Suppliers .memoize (() -> new CrmClient (clientOptions ));
35
35
this .filestorageClient = Suppliers .memoize (() -> new FilestorageClient (clientOptions ));
36
- this .hrisClient = Suppliers .memoize (() -> new HrisClient (clientOptions ));
37
36
this .ticketingClient = Suppliers .memoize (() -> new TicketingClient (clientOptions ));
37
+ this .hrisClient = Suppliers .memoize (() -> new HrisClient (clientOptions ));
38
38
this .accountingClient = Suppliers .memoize (() -> new AccountingClient (clientOptions ));
39
39
}
40
40
@@ -50,14 +50,14 @@ public FilestorageClient filestorage() {
50
50
return this .filestorageClient .get ();
51
51
}
52
52
53
- public HrisClient hris () {
54
- return this .hrisClient .get ();
55
- }
56
-
57
53
public TicketingClient ticketing () {
58
54
return this .ticketingClient .get ();
59
55
}
60
56
57
+ public HrisClient hris () {
58
+ return this .hrisClient .get ();
59
+ }
60
+
61
61
public AccountingClient accounting () {
62
62
return this .accountingClient .get ();
63
63
}
0 commit comments