⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 registraraccess.java

📁 基于JAINSIP的一个proxy源码
💻 JAVA
字号:
/** 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -