Class JSONDashlet
- java.lang.Object
-
- de.tsystems.mms.apm.performancesignature.ui.model.JSONDashlet
-
- All Implemented Interfaces:
Comparable<JSONDashlet>
public class JSONDashlet extends Object implements Comparable<JSONDashlet>
-
-
Constructor Summary
Constructors Constructor Description JSONDashlet(int col, int row, String id, String dashboard)
JSONDashlet(int col, int row, String dashboard, String chartDashlet, String measure, String aggregation, String description)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(JSONDashlet that)
boolean
equals(Object obj)
String
generateDashletName()
String
generateID()
String
getAggregation()
String
getChartDashlet()
int
getCol()
String
getCustomBuildCount()
String
getCustomName()
String
getDashboard()
String
getDescription()
String
getId()
String
getMeasure()
int
getRow()
int
hashCode()
boolean
isShow()
void
setAggregation(String aggregation)
void
setChartDashlet(String chartDashlet)
void
setCol(int col)
void
setCustomBuildCount(String customBuildCount)
void
setCustomName(String customName)
void
setDashboard(String dashboard)
void
setDescription(String description)
void
setId(String id)
void
setMeasure(String measure)
void
setRow(int row)
void
setShow(boolean show)
-
-
-
Method Detail
-
getCol
public int getCol()
- Returns:
- The col
-
setCol
public void setCol(int col)
- Parameters:
col
- The col
-
getRow
public int getRow()
- Returns:
- The row
-
setRow
public void setRow(int row)
- Parameters:
row
- The row
-
getId
public String getId()
- Returns:
- The id
-
setId
public void setId(String id)
- Parameters:
id
- The id
-
getDashboard
public String getDashboard()
- Returns:
- The dashboard
-
setDashboard
public void setDashboard(String dashboard)
- Parameters:
dashboard
- The dashboard
-
getChartDashlet
public String getChartDashlet()
- Returns:
- The chartDashlet
-
setChartDashlet
public void setChartDashlet(String chartDashlet)
- Parameters:
chartDashlet
- The chartDashlet
-
getMeasure
public String getMeasure()
- Returns:
- The measure
-
setMeasure
public void setMeasure(String measure)
- Parameters:
measure
- The measure
-
getCustomName
public String getCustomName()
- Returns:
- The customName
-
setCustomName
public void setCustomName(String customName)
- Parameters:
customName
- The customName
-
getCustomBuildCount
public String getCustomBuildCount()
- Returns:
- The customBuildCount
-
setCustomBuildCount
public void setCustomBuildCount(String customBuildCount)
- Parameters:
customBuildCount
- The customBuildCount
-
isShow
public boolean isShow()
- Returns:
- The show
-
setShow
public void setShow(boolean show)
- Parameters:
show
- The show
-
getAggregation
public String getAggregation()
- Returns:
- The aggregation
-
setAggregation
public void setAggregation(String aggregation)
- Parameters:
aggregation
- The aggregation
-
getDescription
public String getDescription()
- Returns:
- The description
-
setDescription
public void setDescription(String description)
- Parameters:
description
- The description
-
generateID
public String generateID()
-
generateDashletName
public String generateDashletName()
-
compareTo
public int compareTo(@Nonnull JSONDashlet that)
- Specified by:
compareTo
in interfaceComparable<JSONDashlet>
-
-