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

angry1980.utils.SpringMapWrapper Maven / Gradle / Ivy

There is a newer version: 0.0.10
Show newest version
package angry1980.utils;

import java.util.Map;
import java.util.Objects;

public class SpringMapWrapper {

    private final Map map;

    public SpringMapWrapper(Map map) {
        this.map = Objects.requireNonNull(map);
    }

    public Map getMap() {
        return map;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy