Skip to content
GitLab
Menu
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
2052c6ba
Commit
2052c6ba
authored
Oct 27, 2017
by
Rafa Hernandez
Committed by
Alexander Salas Bastidas
Nov 01, 2017
Browse files
docs(LostPasswordRequest): add initial documentation
parent
abc49b3e
Changes
1
Hide whitespace changes
Inline
Side-by-side
glpi/src/main/java/org/glpi/api/request/LostPasswordRequest.java
View file @
2052c6ba
...
...
@@ -32,14 +32,26 @@ public class LostPasswordRequest {
@SerializedName
(
"email"
)
private
String
email
;
/**
* Create a request for Lost Password
* @param email
*/
public
LostPasswordRequest
(
String
email
)
{
this
.
email
=
email
;
}
/**
* get email
* @return
*/
public
String
getEmail
()
{
return
email
;
}
/**
* set email
* @return
*/
public
void
setEmail
(
String
email
)
{
this
.
email
=
email
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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