com.testdroid.api.serialization.level.Log4jLevelModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testdroid-api Show documentation
Show all versions of testdroid-api Show documentation
The Testdroid API library for Java
package com.testdroid.api.serialization.level;
import com.fasterxml.jackson.databind.module.SimpleModule;
import org.apache.logging.log4j.Level;
/**
* @author Artur Ćwikliński
*
* This class is responsible for serialization and deserialization of log4j2 Level class.
*/
public class Log4jLevelModule extends SimpleModule {
public Log4jLevelModule() {
this.addSerializer(Level.class, new Log4jLevelSerializer(Level.class));
this.addDeserializer(Level.class, new Log4jLevelDeserializer(Level.class));
}
}