Package lumis.service.document
Class DocumentConfig
- java.lang.Object
-
- lumis.service.document.DocumentConfig
-
public class DocumentConfig extends Object
Entity class for an document from the Document Service.- Since:
- 4.0.0
- Version:
- $Revision: 19963 $ $Date: 2017-02-21 19:28:29 -0300 (Tue, 21 Feb 2017) $
-
-
Field Summary
Fields Modifier and Type Field Description static int
TYPE_DOCUMENT
static int
TYPE_FOLDER
-
Constructor Summary
Constructors Constructor Description DocumentConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getDescription()
String
getDocumentFile()
String
getId()
String
getParentFolder()
String
getTitle()
int
getType()
boolean
isInheritPublishTo()
Returns whether the publish to principals for this document is inherited from itsparent folder
.void
setDescription(String description)
void
setDocumentFile(String documentFile)
void
setId(String id)
Deprecated.void
setInheritPublishTo(boolean inheritPublishTo)
Sets whether the publish to principals for this document is inherited from itsparent folder
.void
setParentFolder(String parentFolder)
void
setTitle(String title)
void
setType(int type)
-
-
-
Field Detail
-
TYPE_DOCUMENT
public static final int TYPE_DOCUMENT
- See Also:
- Constant Field Values
-
TYPE_FOLDER
public static final int TYPE_FOLDER
- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
public String getId()
-
setId
@Deprecated public void setId(String id)
Deprecated.
-
getDocumentFile
public String getDocumentFile()
-
setDocumentFile
public void setDocumentFile(String documentFile)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getTitle
public String getTitle()
-
setTitle
public void setTitle(String title)
-
getType
public int getType()
-
setType
public void setType(int type)
-
getParentFolder
public String getParentFolder()
-
setParentFolder
public void setParentFolder(String parentFolder)
-
isInheritPublishTo
public boolean isInheritPublishTo()
Returns whether the publish to principals for this document is inherited from itsparent folder
.- Returns:
true
if the publish to principals is inherited,false
otherwise.- Since:
- 10.1.0
-
setInheritPublishTo
public void setInheritPublishTo(boolean inheritPublishTo)
Sets whether the publish to principals for this document is inherited from itsparent folder
.- Parameters:
inheritPublishTo
-true
if the publish to principals is inherited,false
otherwise.- Since:
- 10.1.0
-
-