registraraccess.java
来自「The source code for this package is loca」· Java 代码 · 共 18 行
JAVA
18 行
/** An interface to fetch the registry contents as an XML formatted string* from the proxy.*/package gov.nist.sip.proxy.registrar;import java.rmi.Remote;import java.rmi.RemoteException;import java.util.Vector;public interface RegistrarAccess extends Remote { public String getRegistryXMLTags() throws RemoteException; // public String getRegistryContents() throws RemoteException; public Vector getRegistryBindings() throws RemoteException; public int getRegistrySize() throws RemoteException; // More query functions to be added.}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?