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

org.wings.recorder.Request Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2000,2005 wingS development team.
 *
 * This file is part of wingS (http://wingsframework.org).
 *
 * wingS is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2.1
 * of the License, or (at your option) any later version.
 *
 * Please see COPYING for the complete licence.
 */
package org.wings.recorder;

import java.util.ArrayList;
import java.util.List;

/**
 * @author hengels
 */
class Request {
    private String method;
    private String resource;
    private long millis;
    private List events = new ArrayList<>();
    private List
headers = new ArrayList<>(); public Request(String method, String resource) { this.method = method; this.resource = resource; this.millis = System.currentTimeMillis(); } public String getMethod() { return method; } public void setMethod(String method) { this.method = method; } public String getResource() { return resource; } public void setResource(String resource) { this.resource = resource; } public List getEvents() { return events; } public List
getHeaders() { return headers; } public long getMillis() { return millis; } static class Header { private String name; private String value; public Header(String name, String value) { this.name = name; this.value = value; } public String getName() { return name; } public String getValue() { return value; } } static class Event { private String name; private String[] values; public Event(String name, String... values) { this.name = name; this.values = values; } public String getName() { return name; } public String[] getValues() { return values; } } public void addEvent(Event event) { events.add(event); } public void addHeader(Header header) { headers.add(header); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy