io.gravitee.management.model.log.ApplicationRequest Maven / Gradle / Ivy
/**
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.gravitee.management.model.log;
import io.gravitee.common.http.HttpMethod;
import io.gravitee.management.model.log.extended.Request;
import io.gravitee.management.model.log.extended.Response;
import java.util.Map;
/**
* @author David BRASSELY (david.brassely at graviteesource.com)
* @author GraviteeSource Team
*/
public class ApplicationRequest {
private String id;
private long timestamp;
private String transactionId;
private String path;
private HttpMethod method;
private int status;
private long responseTime;
private long requestContentLength;
private long responseContentLength;
private String apiKey;
private String plan;
private String api;
private Request request;
private Response response;
private Map> metadata;
private String host;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public long getTimestamp() {
return timestamp;
}
public void setTimestamp(long timestamp) {
this.timestamp = timestamp;
}
public String getTransactionId() {
return transactionId;
}
public void setTransactionId(String transactionId) {
this.transactionId = transactionId;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public HttpMethod getMethod() {
return method;
}
public void setMethod(HttpMethod method) {
this.method = method;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
public long getResponseTime() {
return responseTime;
}
public void setResponseTime(long responseTime) {
this.responseTime = responseTime;
}
public long getRequestContentLength() {
return requestContentLength;
}
public void setRequestContentLength(long requestContentLength) {
this.requestContentLength = requestContentLength;
}
public long getResponseContentLength() {
return responseContentLength;
}
public void setResponseContentLength(long responseContentLength) {
this.responseContentLength = responseContentLength;
}
public String getPlan() {
return plan;
}
public void setPlan(String plan) {
this.plan = plan;
}
public String getApi() {
return api;
}
public void setApi(String api) {
this.api = api;
}
public String getApiKey() {
return apiKey;
}
public void setApiKey(String apiKey) {
this.apiKey = apiKey;
}
public Request getRequest() {
return request;
}
public void setRequest(Request request) {
this.request = request;
}
public Response getResponse() {
return response;
}
public void setResponse(Response response) {
this.response = response;
}
public Map> getMetadata() {
return metadata;
}
public void setMetadata(Map> metadata) {
this.metadata = metadata;
}
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ApplicationRequest request = (ApplicationRequest) o;
return id.equals(request.id);
}
@Override
public int hashCode() {
return id.hashCode();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy