Skip to content

Commit 45431a4

Browse files
committed
update output
1 parent 7f5b2d5 commit 45431a4

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/org/fusioproject/sample

1 file changed

+2
-2
lines changed

src/main/java/org/fusioproject/sample/Main.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ public static void main(String[] args) throws ClientException {
2020

2121
OperationCollection operations = client.backend().operation().getAll(0, 16, "");
2222

23-
System.out.println("Routes:");
23+
System.out.println("Operations:");
2424
for (int i = 0; i < operations.getEntry().length; i++) {
25-
System.out.println("* " + operations.getEntry()[i].getHttpPath());
25+
System.out.println("* " + operations.getEntry()[i].getHttpMethod() + " " + operations.getEntry()[i].getHttpPath());
2626
}
2727
}
2828

0 commit comments

Comments
 (0)