Class HttpRequest
- java.lang.Object
-
- io.jans.as.server.audit.debug.entity.HttpRequest
-
public class HttpRequest extends Object
Created by eugeniuparvan on 5/15/17.- Author:
- Yuriy Movchan Date: 06/09/2019
-
-
Constructor Summary
Constructors Constructor Description HttpRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getBody()
String
getDuration()
Map<String,String>
getHeaders()
String
getMethod()
Map<String,String>
getParams()
String
getPath()
String
getSenderIP()
void
setBody(String body)
void
setDuration(String duration)
void
setHeaders(Map<String,String> headers)
void
setMethod(String method)
void
setParams(Map<String,String> params)
void
setPath(String path)
void
setSenderIP(String senderIP)
-
-
-
Method Detail
-
getSenderIP
public String getSenderIP()
-
setSenderIP
public void setSenderIP(String senderIP)
-
getMethod
public String getMethod()
-
setMethod
public void setMethod(String method)
-
getPath
public String getPath()
-
setPath
public void setPath(String path)
-
getBody
public String getBody()
-
setBody
public void setBody(String body)
-
getDuration
public String getDuration()
-
setDuration
public void setDuration(String duration)
-
-