50 lines
2.0 KiB
Java
50 lines
2.0 KiB
Java
|
|
package com.nis.web.dao.configuration;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
import com.nis.domain.configuration.CfgIndexInfo;
|
||
|
|
import com.nis.domain.configuration.HttpBodyCfg;
|
||
|
|
import com.nis.domain.configuration.HttpReqHeadCfg;
|
||
|
|
import com.nis.domain.configuration.HttpResHeadCfg;
|
||
|
|
import com.nis.domain.configuration.HttpUrlCfg;
|
||
|
|
import com.nis.domain.configuration.IpPortCfg;
|
||
|
|
import com.nis.web.dao.CrudDao;
|
||
|
|
import com.nis.web.dao.MyBatisDao;
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* WEB相关配置数据处理类
|
||
|
|
* @author dell
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
@MyBatisDao
|
||
|
|
public interface WebsiteCfgDao extends CrudDao<CfgIndexInfo>{
|
||
|
|
|
||
|
|
public CfgIndexInfo getCfgIndexInfo(Long id);
|
||
|
|
public List<CfgIndexInfo> getHttpList(CfgIndexInfo entity);
|
||
|
|
public List<IpPortCfg> getIpPortList(CfgIndexInfo entity);
|
||
|
|
public List<HttpUrlCfg> getHttpUrlList(CfgIndexInfo entity);
|
||
|
|
public List<HttpResHeadCfg> getHttpResHdrList(CfgIndexInfo entity);
|
||
|
|
public List<HttpBodyCfg> getHttpResBodyList(CfgIndexInfo entity);
|
||
|
|
public List<HttpReqHeadCfg> getHttpReqHdrList(CfgIndexInfo entity);
|
||
|
|
public List<HttpBodyCfg> getHttpReqBodyList(CfgIndexInfo entity);
|
||
|
|
public void saveCfgIndex(CfgIndexInfo entity);
|
||
|
|
public void saveHttpIpCfg(IpPortCfg entity);
|
||
|
|
public void saveHttpUrlCfg(HttpUrlCfg entity);
|
||
|
|
public void saveHttpReqHdrCfg(HttpReqHeadCfg entity);
|
||
|
|
public void saveHttpResHdrCfg(HttpResHeadCfg entity);
|
||
|
|
public void saveHttpBodyCfg(HttpBodyCfg entity);
|
||
|
|
public void deleteHttpIpCfg(CfgIndexInfo entity);
|
||
|
|
public void deleteHttpUrlCfg(CfgIndexInfo entity);
|
||
|
|
public void deleteHttpReqHdrCfg(CfgIndexInfo entity);
|
||
|
|
public void deleteHttpResHdrCfg(CfgIndexInfo entity);
|
||
|
|
public void deleteHttpBodyCfg(CfgIndexInfo entity);
|
||
|
|
public void updateCfgIndex(CfgIndexInfo entity);
|
||
|
|
public void updateHttpIpCfg(IpPortCfg entity);
|
||
|
|
public void updateHttpUrlCfg(HttpUrlCfg entity);
|
||
|
|
public void updateHttpReqHdrCfg(HttpReqHeadCfg entity);
|
||
|
|
public void updateHttpResHdrCfg(HttpResHeadCfg entity);
|
||
|
|
public void updateHttpBodyCfg(HttpBodyCfg entity);
|
||
|
|
|
||
|
|
}
|