| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| MapModule |
|
| 1.0;1 |
| 1 | package com.buckosoft.PicMan.service.support; | |
| 2 | ||
| 3 | import com.fasterxml.jackson.databind.module.SimpleModule; | |
| 4 | ||
| 5 | public class MapModule extends SimpleModule { | |
| 6 | ||
| 7 | private static final long serialVersionUID = -468949793190613359L; | |
| 8 | ||
| 9 | 0 | public MapModule() { |
| 10 | 0 | setSerializers(new MapSerializersExt()); |
| 11 | 0 | setDeserializers(new MapDeserializersExt()); |
| 12 | 0 | } |
| 13 | ||
| 14 | } |