All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.norberg.automatter.jackson.AutoMatterModule Maven / Gradle / Ivy

package io.norberg.automatter.jackson;

import com.fasterxml.jackson.databind.module.SimpleModule;

public class AutoMatterModule extends SimpleModule {

  @Override
  public void setupModule(final SetupContext context) {
    super.setupModule(context);
    context.addAbstractTypeResolver(new AutoMatterResolver());
    context.appendAnnotationIntrospector(new AutoMatterAnnotationIntrospector());
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy