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

io.github.kilmajster.ngrok.data.NgrokTunnelsList Maven / Gradle / Ivy

Go to download

🚀 Spring Boot tunneling with Ngrok made easy! No matter if you are using Windows, Mac OS X, Linux or even Docker - ngrok binary will be chosen automatically 🤖 so you don't need to care about environment changing etc. auto-configuration magic 🧙‍♂️

There is a newer version: 0.9.2
Show newest version
package io.github.kilmajster.ngrok.data;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

public class NgrokTunnelsList implements Serializable {

    private List tunnels;

    public NgrokTunnelsList() {
        this.tunnels = new ArrayList<>();
    }

    public List getTunnels() {
        return tunnels;
    }

    public void setTunnels(List tunnels) {
        this.tunnels = tunnels;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy