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

se.hiq.oss.json.schema.repo.JsonSchemaRepositoryFactoryImpl Maven / Gradle / Ivy

There is a newer version: 0.8
Show newest version
package se.hiq.oss.json.schema.repo;


import com.fasterxml.jackson.databind.ObjectMapper;

public class JsonSchemaRepositoryFactoryImpl implements JsonSchemaRepositoryFactory {

    private ObjectMapper objectMapper;

    public JsonSchemaRepositoryFactoryImpl(final ObjectMapper objectMapper) {
        this.objectMapper = objectMapper;
    }

    public JsonSchemaRepository create() {
        return new JsonSchemaRepositoryImpl(objectMapper);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy