📄 interrogatormanagementslsbremote.java
字号:
package org.firstopen.singularity.config;
import java.rmi.RemoteException;
public interface InterrogatorManagementSLSBRemote extends javax.ejb.EJBObject {
public void createPhysicalInterrogator(String pInterrogatorName)
throws Exception, RemoteException;
public void updatePhysicalInterrogator(String pInterrogatorName)
throws Exception, RemoteException;
public void createLogicalInterrogator(String lInterrogatorName)
throws Exception, RemoteException;
public void updateLogicalInterrogator(String lInterrogatorName)
throws Exception, RemoteException;
public void associatePhysicalInterrogatorWithLogicalInterrogator(
String pInterrogatorName, String lInterrogatorName)
throws Exception, RemoteException;
public void disAssociatePhysicalInterrogatorWithLogicalInterrogator(
String pInterrogatorName, String lInterrogatorName)
throws Exception, RemoteException;
public void deletePhysicalInterrogator(String pInterrogatorName)
throws Exception, RemoteException;
public void deleteLogicalInterrogator(String lInterrogatorName)
throws Exception, RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -