Package africa.absa.inception.reporting
Class ReportParameter
- java.lang.Object
-
- africa.absa.inception.reporting.ReportParameter
-
- All Implemented Interfaces:
Serializable
public class ReportParameter extends Object implements Serializable
The ReportParameter class holds the information for a report parameter.- Author:
- Marcus Portmann
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ReportParameter()Constructs a new ReportParameter.ReportParameter(String name, String value)Constructs a new ReportParameter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()Returns the name of the report parameter.StringgetValue()Returns the value for the report parameter.voidsetName(String name)Set the name of the report parameter.voidsetValue(String value)Set the value for the report parameter.
-
-
-
Method Detail
-
getName
public String getName()
Returns the name of the report parameter.- Returns:
- the name of the report parameter
-
getValue
public String getValue()
Returns the value for the report parameter.- Returns:
- the value for the report parameter
-
setName
public void setName(String name)
Set the name of the report parameter.- Parameters:
name- the name of the report parameter
-
setValue
public void setValue(String value)
Set the value for the report parameter.- Parameters:
value- the value for the report parameter
-
-