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
abc49b3e
Commit
abc49b3e
authored
Oct 27, 2017
by
Rafa Hernandez
Committed by
Alexander Salas Bastidas
Nov 01, 2017
Browse files
docs(ChangeActiveProfileRequest): add initial documentation
parent
3d86fd52
Changes
1
Hide whitespace changes
Inline
Side-by-side
glpi/src/main/java/org/glpi/api/request/ChangeActiveProfileRequest.java
View file @
abc49b3e
...
...
@@ -32,14 +32,26 @@ public class ChangeActiveProfileRequest {
@SerializedName
(
"profiles_id"
)
private
String
profilesId
;
/**
* Create a request for change active profile
* @param profilesId
*/
public
ChangeActiveProfileRequest
(
String
profilesId
)
{
this
.
profilesId
=
profilesId
;
}
/**
* get profiles id
* @return
*/
public
String
getprofilesId
()
{
return
profilesId
;
}
/**
* set profile id
* @param profilesId
*/
public
void
setprofilesId
(
String
profilesId
)
{
this
.
profilesId
=
profilesId
;
}
...
...
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