Example usage for com.fasterxml.jackson.databind Module version

List of usage examples for com.fasterxml.jackson.databind Module version

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind Module version.

Prototype

@Override
public abstract Version version();

Source Link

Document

Method that returns version of this module.

Usage

From source file:com.google.api.server.spi.ConfiguredObjectMapperTest.java

private static void doModuleSetup(Module module, String name) {
    when(module.getModuleName()).thenReturn(name);
    when(module.version()).thenReturn(Version.unknownVersion());
}