Class FolderResponse
- java.lang.Object
-
- com.flowable.platform.service.content.FolderResponse
-
public class FolderResponse extends Object
- Author:
- Javier Casal
-
-
Constructor Summary
Constructors Constructor Description FolderResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<FolderItem>
getContent()
String
getId()
List<FolderPath>
getPath()
String
getScopeType()
boolean
isReadOnly()
void
setContent(List<FolderItem> content)
void
setId(String id)
void
setPath(List<FolderPath> path)
void
setReadOnly(boolean readOnly)
void
setScopeType(String scopeType)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getScopeType
public String getScopeType()
-
setScopeType
public void setScopeType(String scopeType)
-
getPath
public List<FolderPath> getPath()
-
setPath
public void setPath(List<FolderPath> path)
-
getContent
public List<FolderItem> getContent()
-
setContent
public void setContent(List<FolderItem> content)
-
isReadOnly
public boolean isReadOnly()
-
setReadOnly
public void setReadOnly(boolean readOnly)
-
-