We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f5b2d5 commit 45431a4Copy full SHA for 45431a4
src/main/java/org/fusioproject/sample/Main.java
@@ -20,9 +20,9 @@ public static void main(String[] args) throws ClientException {
20
21
OperationCollection operations = client.backend().operation().getAll(0, 16, "");
22
23
- System.out.println("Routes:");
+ System.out.println("Operations:");
24
for (int i = 0; i < operations.getEntry().length; i++) {
25
- System.out.println("* " + operations.getEntry()[i].getHttpPath());
+ System.out.println("* " + operations.getEntry()[i].getHttpMethod() + " " + operations.getEntry()[i].getHttpPath());
26
}
27
28
0 commit comments