Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
GLPI
java-library-glpi
Commits
257b8e84
Commit
257b8e84
authored
Nov 30, 2018
by
Ivan Del Pino
Committed by
Rafael Jesus Hernández Vasquez
Dec 03, 2018
Browse files
feat(routes): include endpoints in interface
Signed-off-by:
Ivan Del Pino
<
idelpino@teclib.com
>
parent
80242a37
Changes
1
Hide whitespace changes
Inline
Side-by-side
glpi/src/main/java/org/glpi/api/Routes.java
View file @
257b8e84
...
...
@@ -141,4 +141,13 @@ public interface Routes {
@PUT
(
"lostPassword"
)
Call
<
Void
>
recoveryPassword
(
@Body
ResetPasswordRequest
requestPost
);
/*Get File */
@Headers
(
"Content-Type: application/json"
)
@GET
(
"PluginFlyvemdmFile/{fileId}"
)
Call
<
JsonArray
>
getPluginFile
(
@HeaderMap
Map
<
String
,
String
>
headers
,
@Path
(
"fileId"
)
String
fileId
);
@Headers
(
"Content-Type: application/json"
)
@GET
(
"PluginFlyvemdmPackage/{fileId}"
)
Call
<
JsonArray
>
getPluginPackage
(
@HeaderMap
Map
<
String
,
String
>
headers
,
@Path
(
"fileId"
)
String
fileId
);
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment