Class Wallboard
- java.lang.Object
-
- org.opennms.features.vaadin.dashboard.model.Wallboard
-
public class Wallboard extends java.lang.Object
This class represents a collection ofDashletSpec
objects.- Author:
- Christian Pape
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<DashletSpec>
getDashletSpecs()
Returns the associatedDashletSpec
instances.java.lang.String
getTitle()
Returns the title of this wallboard.boolean
isDefault()
Returns whether this wallboard is the default wallboard.void
setDefault(boolean defaultValue)
Sets the default value.void
setTitle(java.lang.String title)
Sets the title of this wallboard.
-
-
-
Method Detail
-
isDefault
public boolean isDefault()
Returns whether this wallboard is the default wallboard.- Returns:
- default value
-
setDefault
public void setDefault(boolean defaultValue)
Sets the default value.
-
setTitle
public void setTitle(java.lang.String title)
Sets the title of this wallboard.- Parameters:
title
- the name to be set
-
getTitle
public java.lang.String getTitle()
Returns the title of this wallboard.- Returns:
- the title of the wallboard
-
getDashletSpecs
public java.util.List<DashletSpec> getDashletSpecs()
Returns the associatedDashletSpec
instances.- Returns:
- the
DashletSpec
instances of this object
-
-