Class SampleReportConf
- java.lang.Object
-
- org.apache.syncope.fit.core.reference.SampleReportConf
-
- All Implemented Interfaces:
Serializable
,BaseBean
,ReportConf
public class SampleReportConf extends Object implements ReportConf
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SampleReportConf()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getDoubleValue()
float
getFloatValue()
int
getIntValue()
List<String>
getListValues()
long
getLongValue()
String
getStringValue()
boolean
isBooleanValue()
void
setBooleanValue(boolean booleanValue)
void
setDoubleValue(double doubleValue)
void
setFloatValue(float floatValue)
void
setIntValue(int intValue)
void
setListValues(List<String> listValues)
void
setLongValue(long longValue)
void
setStringValue(String stringValue)
-
-
-
Method Detail
-
getStringValue
public String getStringValue()
-
setStringValue
public void setStringValue(String stringValue)
-
getIntValue
public int getIntValue()
-
setIntValue
public void setIntValue(int intValue)
-
getLongValue
public long getLongValue()
-
setLongValue
public void setLongValue(long longValue)
-
getFloatValue
public float getFloatValue()
-
setFloatValue
public void setFloatValue(float floatValue)
-
getDoubleValue
public double getDoubleValue()
-
setDoubleValue
public void setDoubleValue(double doubleValue)
-
isBooleanValue
public boolean isBooleanValue()
-
setBooleanValue
public void setBooleanValue(boolean booleanValue)
-
-