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);
    }

  • 相关阅读:
    CSS---@import
    C语言中float,double类型,在内存中的结构(存储方式)
    科普:字,字长,字节,位
    mysql的字段类型范围必须重视起来
    print,print_r,echo,var_dump,var_export比较
    常见编码格式
    php截取字符串,无乱码
    MYSQL配置详解
    Mysql主从复制,读写分离
    17173php招聘
  • 原文地址:https://www.cnblogs.com/unimme/p/3218052.html
Copyright © 2011-2022 走看看