registrationeventlistener.java

来自「Xfire文件 用于开发web service 的一个开源工具 很好用的」· Java 代码 · 共 29 行

JAVA
29
字号
package org.codehaus.xfire.service.event;/** * An object that registers to be notified of events generated by a <code>ServiceEndpointRegistry</code> object. * * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a> * @author <a href="mailto:poutsma@mac.com">Arjen Poutsma</a> * @see RegistrationEvent */public interface RegistrationEventListener{    /**     * Notifies this <code>RegistrationEventListener</code> that the <code>ServiceEndpointRegistry</code> has registered     * an endpoint.     *     * @param event an event object describing the source of the event     */    void endpointRegistered(RegistrationEvent event);    /**     * Notifies this <code>RegistrationEventListener</code> that the <code>ServiceEndpointRegistry</code> has     * deregistered an endpoint.     *     * @param event an event object describing the source of the event     */    void endpointUnregistered(RegistrationEvent event);}

⌨️ 快捷键说明

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