zoukankan      html  css  js  c++  java
  • 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);
    }

  • 相关阅读:
    人生无常 淡然处之
    对PHP开发的认知
    专家路线
    很少接触的文学
    懒加载
    Markdown入门 学习
    (转载)iOS开发历程书籍推荐
    ObjectiveC1基础代码——类和对象
    day11基础代码——函数指针
    day6
  • 原文地址:https://www.cnblogs.com/unimme/p/3218052.html
Copyright © 2011-2022 走看看