Package com.logicaldoc.core.dashlet
Class Dashlet
- java.lang.Object
-
- com.logicaldoc.core.PersistentObject
-
- com.logicaldoc.core.dashlet.Dashlet
-
- All Implemented Interfaces:
Cloneable
public class Dashlet extends PersistentObject implements Cloneable
Represents a sub-window of a dashboard- Since:
- 8.2.3
- Author:
- Marco Meschieri - LogicalDOC
-
-
Field Summary
Fields Modifier and Type Field Description static String
TYPE_CONTENT
static String
TYPE_DOCEVENT
static String
TYPE_DOCUMENT
static String
TYPE_NOTE
-
Fields inherited from class com.logicaldoc.core.PersistentObject
DELETED_CODE_DEFAULT, DELETED_CODE_STRONG
-
-
Constructor Summary
Constructors Constructor Description Dashlet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
clone()
String
getContent()
Integer
getMax()
String
getName()
String
getQuery()
String
getTitle()
String
getType()
void
setContent(String content)
void
setMax(Integer max)
void
setName(String name)
void
setQuery(String query)
void
setTitle(String title)
void
setType(String type)
String
toString()
-
Methods inherited from class com.logicaldoc.core.PersistentObject
equals, getDeleted, getId, getLastModified, getRecordVersion, getTenantId, hashCode, setDeleted, setId, setLastModified, setRecordVersion, setTenantId
-
-
-
-
Field Detail
-
TYPE_DOCEVENT
public static final String TYPE_DOCEVENT
- See Also:
- Constant Field Values
-
TYPE_DOCUMENT
public static final String TYPE_DOCUMENT
- See Also:
- Constant Field Values
-
TYPE_NOTE
public static final String TYPE_NOTE
- See Also:
- Constant Field Values
-
TYPE_CONTENT
public static final String TYPE_CONTENT
- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
public String getType()
-
getQuery
public String getQuery()
-
getContent
public String getContent()
-
getName
public String getName()
-
setType
public void setType(String type)
-
setQuery
public void setQuery(String query)
-
setContent
public void setContent(String content)
-
setName
public void setName(String name)
-
toString
public String toString()
- Overrides:
toString
in classPersistentObject
-
getTitle
public String getTitle()
-
setTitle
public void setTitle(String title)
-
getMax
public Integer getMax()
-
setMax
public void setMax(Integer max)
-
clone
public Object clone() throws CloneNotSupportedException
- Throws:
CloneNotSupportedException
-
-