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 b1dc85b commit 204b7b6Copy full SHA for 204b7b6
2 files changed
tests/src/test/java/io/jooby/i3756/C3756.java
@@ -0,0 +1,25 @@
1
+/*
2
+ * Jooby https://jooby.io
3
+ * Apache License Version 2.0 https://jooby.io/LICENSE.txt
4
+ * Copyright 2014 Edgar Espina
5
+ */
6
+package io.jooby.i3756;
7
+
8
+import io.jooby.annotation.GET;
9
+import io.jooby.annotation.Path;
10
11
+@Path("/C3756")
12
+public class C3756 {
13
+ private final S3756 s3756;
14
15
+ public C3756(S3756 s3756) {
16
+ super();
17
+ this.s3756 = s3756;
18
+ }
19
20
+ @GET
21
+ public String handle() {
22
+ s3756.accept("hello");
23
+ return "hello";
24
25
+}
tests/src/test/java/io/jooby/i3756/S3756.java
@@ -0,0 +1,11 @@
+public interface S3756 {
+ void accept(String s);
0 commit comments