Uses of Class
com.foxinmy.weixin4j.http.HttpMethod
-
Packages that use HttpMethod Package Description com.foxinmy.weixin4j.http com.foxinmy.weixin4j.http.support.okhttp -
-
Uses of HttpMethod in com.foxinmy.weixin4j.http
Methods in com.foxinmy.weixin4j.http that return HttpMethod Modifier and Type Method Description HttpMethod
HttpHeaders. getAccessControlRequestMethod()
Returns the value of theAccess-Control-Request-Method
request header.HttpMethod
HttpRequest. getMethod()
static HttpMethod
HttpMethod. valueOf(String name)
Returns the enum constant of this type with the specified name.static HttpMethod[]
HttpMethod. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.foxinmy.weixin4j.http that return types with arguments of type HttpMethod Modifier and Type Method Description List<HttpMethod>
HttpHeaders. getAccessControlAllowMethods()
Returns the value of theAccess-Control-Allow-Methods
response header.Set<HttpMethod>
HttpHeaders. getAllow()
Return the set of allowedHTTP methods
, as specified by theAllow
header.Set<HttpMethod>
AbstractHttpClient. options(String url)
Set<HttpMethod>
AbstractHttpClient. options(String url, URLParameter... parameters)
Set<HttpMethod>
HttpClient. options(String url)
Set<HttpMethod>
HttpClient. options(String url, URLParameter... parameters)
Methods in com.foxinmy.weixin4j.http with parameters of type HttpMethod Modifier and Type Method Description protected HttpResponse
AbstractHttpClient. execute(HttpMethod method, String url)
protected HttpResponse
AbstractHttpClient. execute(HttpMethod method, String url, URLParameter... parameters)
void
HttpHeaders. setAccessControlRequestMethod(HttpMethod requestedMethod)
Set the (new) value of theAccess-Control-Request-Method
request header.Method parameters in com.foxinmy.weixin4j.http with type arguments of type HttpMethod Modifier and Type Method Description void
HttpHeaders. setAccessControlAllowMethods(List<HttpMethod> allowedMethods)
Set the (new) value of theAccess-Control-Allow-Methods
response header.void
HttpHeaders. setAllow(Set<HttpMethod> allowedMethods)
Set the set of allowedHTTP methods
, as specified by theAllow
header.Constructors in com.foxinmy.weixin4j.http with parameters of type HttpMethod Constructor Description HttpRequest(HttpMethod method, String url)
HttpRequest(HttpMethod method, URI uri)
-
Uses of HttpMethod in com.foxinmy.weixin4j.http.support.okhttp
Methods in com.foxinmy.weixin4j.http.support.okhttp with parameters of type HttpMethod Modifier and Type Method Description protected void
OkHttpClient2. resolveContent(HttpEntity entity, HttpMethod method, com.squareup.okhttp.Request.Builder requestBuilder)
resolve Request.Content
-