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

io.edurt.datacap.client.cli.http.HttpConfigure Maven / Gradle / Ivy

There is a newer version: 2024.4.0
Show newest version
package io.edurt.datacap.client.cli.http;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;

@Data
@ToString
@NoArgsConstructor
@AllArgsConstructor
public class HttpConfigure
{
    private String host;
    private int port;
    private String username;
    private String password;
    private String token;
    private HttpMethod method = HttpMethod.GET;
    private HttpProtocol protocol = HttpProtocol.http;
    private String url;
    private Long sourceId;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy