Package org.testng.internal
Class ReporterConfig
- java.lang.Object
-
- org.testng.internal.ReporterConfig
-
public class ReporterConfig extends java.lang.Object
Stores the information regarding the configuration of a pluggable report listener.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ReporterConfig.Property
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
className
The class name of the reporter listenerprotected java.util.List<ReporterConfig.Property>
properties
The properties of the reporter listener
-
Constructor Summary
Constructors Constructor Description ReporterConfig(java.lang.String className, java.util.List<ReporterConfig.Property> properties)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReporterConfig
deserialize(java.lang.String inputString)
java.lang.String
getClassName()
java.util.List<ReporterConfig.Property>
getProperties()
java.lang.String
serialize()
java.lang.String
toString()
-
-
-
Field Detail
-
className
protected java.lang.String className
The class name of the reporter listener
-
properties
protected final java.util.List<ReporterConfig.Property> properties
The properties of the reporter listener
-
-
Constructor Detail
-
ReporterConfig
public ReporterConfig(java.lang.String className, java.util.List<ReporterConfig.Property> properties)
-
-
Method Detail
-
getClassName
public java.lang.String getClassName()
-
getProperties
public java.util.List<ReporterConfig.Property> getProperties()
-
serialize
public java.lang.String serialize()
-
deserialize
public static ReporterConfig deserialize(java.lang.String inputString)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-