Example usage for com.fasterxml.jackson.module.paranamer ParanamerModule ParanamerModule

List of usage examples for com.fasterxml.jackson.module.paranamer ParanamerModule ParanamerModule

Introduction

In this page you can find the example usage for com.fasterxml.jackson.module.paranamer ParanamerModule ParanamerModule.

Prototype

public ParanamerModule() 

Source Link

Usage

From source file:com.github.shredder121.gh_event_api.model.json.GHEventApiModule.java

@Override
public void setupModule(SetupContext context) {
    super.setupModule(context);
    // https://github.com/spring-projects/spring-boot/issues/4490
    new GuavaModule().setupModule(context);

    new ParanamerModule().setupModule(context);
}