
com.wueasy.base.bus.service.impl.SystemParamServiceImpl Maven / Gradle / Ivy
/*
* wueasy - A Java Distributed Rapid Development Platform.
* Copyright (C) 2017-2019 wueasy.com
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package com.wueasy.base.bus.service.impl;
import org.springframework.stereotype.Service;
import com.wueasy.base.bus.plugin.sysparameter.filter.SysParameterContext;
import com.wueasy.base.bus.service.SystemParamService;
import com.wueasy.base.entity.DataMap;
/**
*
* @author: fallsea
* @version 1.0
*/
@Service
public class SystemParamServiceImpl implements SystemParamService {
@Override
public DataMap getSystemParamDataMap() {
return SysParameterContext.getDataMap();
}
@Override
public void setSystemParamDataMap(DataMap dataMap) {
SysParameterContext.setDataMap(dataMap);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy