interrogatormanagementslsbremote.java

来自「一个开源的rfid middleware 资料」· Java 代码 · 共 32 行

JAVA
32
字号
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 + =
减小字号Ctrl + -
显示快捷键?