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

📄 servicedeployer.java

📁 Xfire文件 用于开发web service 的一个开源工具 很好用的
💻 JAVA
字号:
package org.codehaus.xfire.loom;/** * Component to deploy components in XFire using (optional) predefined configurations * * @author <a href="mailto:peter.royal@pobox.com">peter royal</a> */public interface ServiceDeployer{    /**     * Deploy the specified object via XFire. The key points to a predefined configuration that this component may have.     * If the key is not recognized by this component, a template configuration will be used.     *     * @param key    Key of service to deploy. Required.     * @param object Object to deploy as service. Required.     */    void deploy( String key, Object object ) throws Exception;    /**     * Undeploy the specified object as previously deployed with {@link #deploy(String, Object)}     *     * @param key Key of service to undeploy. Required.     */    void undeploy( String key );}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -