
io.lsn.spring.system.mapper.SystemMapperRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of system.mapper Show documentation
Show all versions of system.mapper Show documentation
System to system mapping utilities
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