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

com.saucesubfresh.starter.crawler.domain.Proxy Maven / Gradle / Ivy

package com.saucesubfresh.starter.crawler.domain;

import lombok.Data;

/**
 * @author lijunping on 2022/4/19
 */
@Data
public class Proxy {

    /**
     * 1: http | 2: https
     */
    private Integer scheme;

    /**
     * ip
     */
    private String host;

    /**
     * 端口
     */
    private Integer port;

    /**
     * 用户名
     */
    private String username;

    /**
     * 密码
     */
    private String password;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy