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

io.lsn.spring.system.mapper.SystemMapperRegistry Maven / Gradle / Ivy

The newest version!
package io.lsn.spring.system.mapper;

public class SystemMapperRegistry {
    private static SystemMapperRegistry instance = new SystemMapperRegistry();
    private static SystemMapperService service;

    private SystemMapperRegistry() {
    }

    public static SystemMapperRegistry getInstance() {
        return instance;
    }

    public static SystemMapperService getService() {
        return service;
    }

    public static void setService(SystemMapperService service) {
        SystemMapperRegistry.service = service;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy