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

com.github.alexdlaird.ngrok.protocol.CapturedRequests 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 CapturedRequests response from ngrok's API.
 */
public class CapturedRequests {

    private List requests;
    private String uri;

    /**
     * Get the list of {@link CapturedRequest}s.
     */
    public List getRequests() {
        return requests;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy