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

com.xceptance.xlt.report.providers.ResponseCodeReport Maven / Gradle / Ivy

Go to download

XLT (Xceptance LoadTest) is an extensive load and performance test tool developed and maintained by Xceptance.

There is a newer version: 8.1.0
Show newest version
package com.xceptance.xlt.report.providers;

import com.thoughtworks.xstream.annotations.XStreamAlias;

/**
 * Represents the total number of requests that ended with a certain HTTP response code.
 */
@XStreamAlias("responseCode")
public class ResponseCodeReport
{
    /**
     * The HTTP response code.
     */
    public int code;

    /**
     * The textual representation of an HTTP status code.
     */
    public String statusText;

    /**
     * The total number of requests with that response code.
     */
    public int count;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy