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

io.castled.tunnel.SSHTunnelParams Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.castled.tunnel;

import lombok.AllArgsConstructor;
import lombok.Data;

@Data
@AllArgsConstructor
public class SSHTunnelParams {

    private String host;
    private String user;
    private int port;

    private String privateKey;
    private String passPhrase;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy