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

com.rapid7.container.analyzer.docker.util.InstantParserModule Maven / Gradle / Ivy

There is a newer version: 0.2.26
Show newest version
package com.rapid7.container.analyzer.docker.util;

import com.fasterxml.jackson.databind.module.SimpleModule;
import com.fasterxml.jackson.datatype.jsr310.PackageVersion;
import java.time.Instant;

public class InstantParserModule extends SimpleModule {

  public InstantParserModule() {
    super(PackageVersion.VERSION);
    addDeserializer(Instant.class, InstantCustomDeserializer.INSTANT);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy