public interface OAuth1Request
Modifier and Type | Method and Description |
---|---|
void |
addHeaderValue(String name,
String value)
Adds a header with the given name and value.
|
List<String> |
getHeaderValues(String name)
Returns the value(s) of the specified request header.
|
Set<String> |
getParameterNames()
|
List<String> |
getParameterValues(String name)
|
String |
getRequestMethod()
Returns the name of the HTTP method with which this request was made,
for example, GET, POST, or PUT.
|
URL |
getRequestURL()
Returns the URL of the request, including protocol, server name,
optional port number, and server path.
|
String getRequestMethod()
URL getRequestURL()
List<String> getParameterValues(String name)
List
of String
objects containing the
values of the specified request parameter, or null if the parameter does
not exist. For HTTP requests, parameters are contained in the query
string and/or posted form data.name
- the name of the parameter.List<String> getHeaderValues(String name)
name
- the header name.void addHeaderValue(String name, String value) throws IllegalStateException
name
- the name of the header.value
- the header value.IllegalStateException
- if this method cannot be implemented.Copyright © 2007-2017, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.