BrightSide Workbench Full Report + Source Code
org.turro.push.service.HttpRequest Class Reference

Public Member Functions

 HttpRequest (String url, Map< String, String > headers, byte[] body)
 
String getUrl ()
 
Map< String, String > getHeaders ()
 
byte[] getBody ()
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 26 of file HttpRequest.java.

Constructor & Destructor Documentation

◆ HttpRequest()

org.turro.push.service.HttpRequest.HttpRequest ( String  url,
Map< String, String >  headers,
byte[]  body 
)

Definition at line 34 of file HttpRequest.java.

34  {
35  this.url = url;
36  this.headers = headers;
37  this.body = body;
38  }

Member Function Documentation

◆ getBody()

byte [] org.turro.push.service.HttpRequest.getBody ( )

Definition at line 48 of file HttpRequest.java.

48  {
49  return body;
50  }
Here is the caller graph for this function:

◆ getHeaders()

Map<String, String> org.turro.push.service.HttpRequest.getHeaders ( )

Definition at line 44 of file HttpRequest.java.

44  {
45  return headers;
46  }
Here is the caller graph for this function:

◆ getUrl()

String org.turro.push.service.HttpRequest.getUrl ( )

Definition at line 40 of file HttpRequest.java.

40  {
41  return url;
42  }
Here is the caller graph for this function:

The documentation for this class was generated from the following file: