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 3cd8af5 commit 1fca49bCopy full SHA for 1fca49b
modules/swagger-jaxrs/src/test/scala/resources/Resource942SubResource.java
@@ -0,0 +1,21 @@
1
+package resources;
2
+
3
+import models.Employee;
4
+import com.wordnik.swagger.annotations.*;
5
6
+import javax.ws.rs.*;
7
+import javax.ws.rs.core.Response;
8
9
+import java.util.*;
10
11
+@Api(hidden = true)
12
+public class Resource942SubResource {
13
+ @ApiOperation(value = "gets all employees",
14
+ response = Employee.class,
15
+ responseContainer = "list",
16
+ tags = "Employees")
17
+ @Path("")
18
+ public Response getEmployeesById() {
19
+ return Response.ok().build();
20
+ }
21
+}
0 commit comments