Java接口继承接口

Java接口继承接口

public interface HandlerSupport
{
    List getInHandlers();
   
    List getOutHandlers();
   
    List getFaultHandlers();
}

public interface XFire extends HandlerSupport
{
    final public static String ROLE = XFire.class.getName();
    final public static String XFIRE_HOME = "xfire.home";
    final public static String STAX_INPUT_FACTORY="xfire.stax.input.factory";
    final public static String STAX_OUTPUT_FACTORY="xfire.stax.output.factory";
   
    final public static String SERVICES_LIST_DISABLED="services.list.disabled";
    /**
     * Generate WSDL for a service.
     *
     * @param service The name of the service.
     * @param out     The OutputStream to write the WSDL to.
     */
    void generateWSDL(String service, OutputStream out);

    /**
     * Get the <code>ServiceRegistry</code>.
     */
    ServiceRegistry getServiceRegistry();

    /**
     * Get the <code>TransportManager</code>.
     */
    TransportManager getTransportManager();

    List getInPhases();
   
    List getOutPhases();

    Object getProperty(String key);
   
    void setProperty(String key, Object value);
}

原文地址:https://www.cnblogs.com/unimme/p/3218052.html