public ObjectMapper ymlObjectMapper()

in src/main/java/com/epam/digital/data/platform/auth/generator/config/GeneralConfig.java [32:36]


  public ObjectMapper ymlObjectMapper() {
    ObjectMapper mapper = new ObjectMapper(new YAMLFactory());
    mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
    return mapper;
  }