httpMethod = $httpMethod; $this->headers = $headers; $this->queryUrl = $queryUrl; $this->parameters = $parameters; } /** * Get http method * @return string */ public function getHttpMethod() { return $this->httpMethod; } /** * Set http method * @param string $httpMethod Http Method as defined in HttpMethod class */ public function setHttpMethod($httpMethod) { $this->httpMethod = $httpMethod; } /** * Get headers * @return array Map of headers */ public function getHeaders() { return $this->headers; } /** * Set headers * @param array $headers Headers as map */ public function setHeaders(array $headers) { $this->headers = $headers; } /** * Get query url * @return string Query url */ public function getQueryUrl() { return $this->queryUrl; } /** * Set query url * @param string $queryUrl Query url */ public function setQueryUrl($queryUrl) { $this->queryUrl = $queryUrl; } /** * Get parameters * @return array Map of input parameters */ public function getParameters() { return $this->parameters; } /** * Set parameters * @param array $parameters Map of input parameters */ public function setParameters($parameters) { $this->parameters = $parameters; } }