org.conqat.engine.commons.util.canonical.CanonicalJsonModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of teamscale-commons Show documentation
Show all versions of teamscale-commons Show documentation
Provides common DTOs for Teamscale
package org.conqat.engine.commons.util.canonical;
import com.fasterxml.jackson.databind.module.SimpleModule;
/**
* Provides the implementation for {@link CanonicalJson @CanonicalJson}.
*/
public class CanonicalJsonModule extends SimpleModule {
private static final long serialVersionUID = 1L;
public CanonicalJsonModule() {
super("teamscale-commons-canonical-json");
setSerializerModifier(new OrderingBeanSerializerModifier());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy