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
5c52efb1
Commit
5c52efb1
authored
Oct 27, 2017
by
Rafa Hernandez
Committed by
Alexander Salas Bastidas
Nov 01, 2017
Browse files
docs(RecoveryPasswordRequest): add initial documentation
parent
2052c6ba
Changes
1
Hide whitespace changes
Inline
Side-by-side
glpi/src/main/java/org/glpi/api/request/RecoveryPasswordRequest.java
View file @
5c52efb1
...
...
@@ -38,32 +38,62 @@ public class RecoveryPasswordRequest {
@SerializedName
(
"password"
)
private
String
password
;
/**
* Create a request for Recovery Password
* @param email
* @param passwordForgetToken
* @param password
*/
public
RecoveryPasswordRequest
(
String
email
,
String
passwordForgetToken
,
String
password
)
{
this
.
email
=
email
;
this
.
passwordForgetToken
=
passwordForgetToken
;
this
.
password
=
password
;
}
/**
* get Email
* @return
*/
public
String
getEmail
()
{
return
email
;
}
/**
* set Email
* @return
*/
public
void
setEmail
(
String
email
)
{
this
.
email
=
email
;
}
/**
* get Password Forget Token
* @return
*/
public
String
getPasswordForgetToken
()
{
return
passwordForgetToken
;
}
/**
* set Password Forget Token
* @return
*/
public
void
setPasswordForgetToken
(
String
passwordForgetToken
)
{
this
.
passwordForgetToken
=
passwordForgetToken
;
}
/**
* get Password
* @return
*/
public
String
getPassword
()
{
return
password
;
}
/**
* set Password
* @return
*/
public
void
setPassword
(
String
password
)
{
this
.
password
=
password
;
}
...
...
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