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
3d86fd52
Commit
3d86fd52
authored
Oct 27, 2017
by
Rafa Hernandez
Committed by
Alexander Salas Bastidas
Nov 01, 2017
Browse files
docs(ChangeActiveEntitiesRequest): add initial documentation
parent
1e739e13
Changes
1
Hide whitespace changes
Inline
Side-by-side
glpi/src/main/java/org/glpi/api/request/ChangeActiveEntitiesRequest.java
View file @
3d86fd52
...
...
@@ -35,23 +35,44 @@ public class ChangeActiveEntitiesRequest {
@SerializedName
(
"is_recursive"
)
private
String
isRecursive
;
/**
* Create a request for change active entities
* @param entitiesId
* @param isRecursive
*/
public
ChangeActiveEntitiesRequest
(
String
entitiesId
,
String
isRecursive
)
{
this
.
entitiesId
=
entitiesId
;
this
.
isRecursive
=
isRecursive
;
}
/**
* Get Entities Id
* @return String
*/
public
String
getEntitiesId
()
{
return
entitiesId
;
}
/**
* Set Entities Id
* @param entitiesId
*/
public
void
setEntitiesId
(
String
entitiesId
)
{
this
.
entitiesId
=
entitiesId
;
}
/**
* get is Recursive
* @return
*/
public
String
getIsRecursive
()
{
return
isRecursive
;
}
/**
* set is Recursive
* @param isRecursive
*/
public
void
setIsRecursive
(
String
isRecursive
)
{
this
.
isRecursive
=
isRecursive
;
}
...
...
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