dubbo-common/src/main/java/org/apache/dubbo/config/ProviderConfig.java [44:159]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String host;

    /**
     * The port of the service.
     */
    private Integer port;

    /**
     * The context path of the service.
     */
    private String contextpath;

    /**
     * The thread pool configuration.
     */
    private String threadpool;

    /**
     * The name of the thread pool.
     */
    private String threadname;

    /**
     * The size of the thread pool (fixed size).
     */
    private Integer threads;

    /**
     * The size of the I/O thread pool (fixed size).
     */
    private Integer iothreads;

    /**
     * The keep-alive time of the thread pool, default unit: TimeUnit.MILLISECONDS.
     */
    private Integer alive;

    /**
     * The length of the thread pool queue.
     */
    private Integer queues;

    /**
     * The maximum number of acceptable connections.
     */
    private Integer accepts;

    /**
     * The codec used by the protocol.
     */
    private String codec;

    /**
     * The charset used for serialization.
     */
    private String charset;

    /**
     * The maximum payload length.
     */
    private Integer payload;

    /**
     * The size of the network I/O buffer.
     */
    private Integer buffer;

    /**
     * The transporter used by the protocol.
     */
    private String transporter;

    /**
     * The method of information exchange.
     */
    private String exchanger;

    /**
     * The mode of thread dispatching.
     */
    private String dispatcher;

    /**
     * The networker used by the protocol.
     */
    private String networker;

    /**
     * The server-side implementation model of the protocol.
     */
    private String server;

    /**
     * The client-side implementation model of the protocol.
     */
    private String client;

    /**
     * Supported telnet commands, separated by commas.
     */
    private String telnet;

    /**
     * The command line prompt.
     */
    private String prompt;

    /**
     * The status check configuration.
     */
    private String status;

    /**
     * The wait time when stopping the service.
     */
    private Integer wait;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



dubbo-config/dubbo-config-api/src/main/java/org/apache/dubbo/config/bootstrap/builders/ProviderBuilder.java [31:146]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String host;

    /**
     * Service port
     */
    private Integer port;

    /**
     * Context path
     */
    private String contextpath;

    /**
     * Thread pool
     */
    private String threadpool;

    /**
     * Thread pool name
     */
    private String threadname;

    /**
     * Thread pool size (fixed size)
     */
    private Integer threads;

    /**
     * IO thread pool size (fixed size)
     */
    private Integer iothreads;

    /**
     * Thread pool keepAliveTime, default unit TimeUnit.MILLISECONDS
     */
    private Integer alive;

    /**
     * Thread pool queue length
     */
    private Integer queues;

    /**
     * Max acceptable connections
     */
    private Integer accepts;

    /**
     * Protocol codec
     */
    private String codec;

    /**
     * The serialization charset
     */
    private String charset;

    /**
     * Payload max length
     */
    private Integer payload;

    /**
     * The network io buffer size
     */
    private Integer buffer;

    /**
     * Transporter
     */
    private String transporter;

    /**
     * How information gets exchanged
     */
    private String exchanger;

    /**
     * Thread dispatching mode
     */
    private String dispatcher;

    /**
     * Networker
     */
    private String networker;

    /**
     * The server-side implementation model of the protocol
     */
    private String server;

    /**
     * The client-side implementation model of the protocol
     */
    private String client;

    /**
     * Supported telnet commands, separated with comma.
     */
    private String telnet;

    /**
     * Command line prompt
     */
    private String prompt;

    /**
     * Status check
     */
    private String status;

    /**
     * Wait time when stop
     */
    private Integer wait;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



