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

com.github.alexdlaird.ngrok.protocol.Tunnels Maven / Gradle / Ivy

There is a newer version: 2.3.1
Show newest version
/*
 * Copyright (c) 2021-2024 Alex Laird
 *
 * SPDX-License-Identifier: MIT
 */

package com.github.alexdlaird.ngrok.protocol;

import java.util.List;

/**
 * An object representing a Tunnels response from ngrok's API.
 */
public class Tunnels {

    private List tunnels;
    private String uri;

    /**
     * Get the list tunnels.
     */
    public List getTunnels() {
        return tunnels;
    }

    /**
     * Get the URI.
     */
    public String getUri() {
        return uri;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy