📄 openacssei.java
字号:
package org.openacs.ws;
import java.rmi.Remote;
import java.rmi.RemoteException;
import java.util.Hashtable;
/**
* This is the service endpoint interface for the OpenACSweb service.
* Created 2008.2.10 11.02.03
* @author Administrator
*/
public interface OpenACSSEI extends Remote {
/**
* Web service operation
*/
public void FactoryReset(String oui, String sn) throws RemoteException;
/**
* Web service operation
*/
public void RequestCPEConnection(String oui, String sn) throws RemoteException;
/**
* Web service operation
*/
public void CPESet(String oui, String sn, String cfgname) throws RemoteException;
/**
* Web service operation
*/
public void CPEDelete(String oui, String sn) throws RemoteException;
/**
* Web service operation
*/
public Cpe CPEGet(String oui, String sn) throws RemoteException;
/**
* Web service operation
*/
public void ConfigSet(String name, String hw, String version, String filename, String config) throws RemoteException;
/**
* Web service operation
*/
public void ConfigDelete(String name) throws java.rmi.RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -