All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dingtalk.open.app.stream.network.api.NetProxy Maven / Gradle / Ivy

There is a newer version: 1.3.7
Show newest version
package com.dingtalk.open.app.stream.network.api;

/**
 * @author feiyin
 * @date 2023/11/21
 */
public class NetProxy {
    private String host;
    private Integer port;

    public NetProxy(String host, Integer port) {
        this.host = host;
        this.port = port;
    }

    public String getIp() {
        return host;
    }

    public Integer getPort() {
        return port;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy