添加业务配置控制层、事务层、数据层类
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.nis.web.service.configuration;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 特定协议相关配置事务类
|
||||
* @author dell
|
||||
*
|
||||
*/
|
||||
@Service
|
||||
public class AppCfgService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.nis.web.service.configuration;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* FTP相关配置事务类
|
||||
* @author dell
|
||||
*
|
||||
*/
|
||||
@Service
|
||||
public class FtpCfgService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.nis.web.service.configuration;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* IP相关配置事务类
|
||||
* @author dell
|
||||
*
|
||||
*/
|
||||
@Service
|
||||
public class IpCfgService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.nis.web.service.configuration;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 邮件相关配置事务类
|
||||
* @author dell
|
||||
*
|
||||
*/
|
||||
@Service
|
||||
public class MailCfgService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.nis.web.service.configuration;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 在线媒体相关配置事务类
|
||||
* @author dell
|
||||
*
|
||||
*/
|
||||
@Service
|
||||
public class MediaCfgService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.nis.web.service.configuration;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 证书相关配置事务类
|
||||
* @author dell
|
||||
*
|
||||
*/
|
||||
@Service
|
||||
public class SslCfgService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
package com.nis.web.service.configuration;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 隧道协议相关配置事务类
|
||||
* @author dell
|
||||
*
|
||||
*/
|
||||
@Service
|
||||
public class TunnelCfgService {
|
||||
|
||||
public List getL2tpList(){
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.nis.web.service.configuration;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* WEB相关配置事务类
|
||||
* @author dell
|
||||
*
|
||||
*/
|
||||
@Service
|
||||
public class WebCfgService {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user