| | |
| | | package com.vci.web.service; |
| | | |
| | | import com.vci.corba.common.PLException; |
| | | import com.vci.corba.omd.ltm.LinkType; |
| | | import com.vci.starter.web.pagemodel.BaseQueryObject; |
| | | import com.vci.starter.web.pagemodel.DataGrid; |
| | |
| | | public interface OsLinkTypeServiceI extends OsBaseServiceI{ |
| | | |
| | | /** |
| | | * 修改业务类型中对应属性名的属性 |
| | | * @param apName |
| | | * @return |
| | | * @throws PLException |
| | | */ |
| | | boolean alterAp(String apName) throws PLException; |
| | | |
| | | /** |
| | | * 判断该属性是否已经在链接类型中产生了数据 |
| | | * @param abName |
| | | * @return |
| | | * @throws PLException |
| | | */ |
| | | boolean hasInstance(String abName) throws PLException; |
| | | |
| | | /** |
| | | * 获取连接类型名称集合 |
| | | * @return |
| | | */ |
| | | List<String> getAllLtName() throws PLException; |
| | | |
| | | /** |
| | | * 查询所有的链接类型 |
| | | * @return 链接类型对象 |
| | | */ |