本文整理汇总了Java中com.mashape.unirest.http.HttpMethod.OPTIONS属性的典型用法代码示例。如果您正苦于以下问题:Java HttpMethod.OPTIONS属性的具体用法?Java HttpMethod.OPTIONS怎么用?Java HttpMethod.OPTIONS使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类com.mashape.unirest.http.HttpMethod
的用法示例。
在下文中一共展示了HttpMethod.OPTIONS属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: restPath
private static String restPath(Method method, HttpMethod httpMethod) {
if (httpMethod == HttpMethod.OPTIONS) {
return "";
}
String fromPath = getPathFromAnnotation(method);
if (fromPath == null || fromPath.isEmpty()) {
fromPath = List.of(prefixesMap.get(httpMethod))
.filter(prefix -> method.getName().toLowerCase().startsWith(prefix))
.map(prefix -> method.getName().replace(prefix, "").toLowerCase())
.getOrElse("");
//if still empty
if (fromPath.isEmpty()) {
fromPath = method.getName();
}
}
if (httpMethod == HttpMethod.GET) {
if (fromPath == null || fromPath.isEmpty()) {
fromPath = javaslang.collection.List.of(method.getParameters())
.map(p -> "{" + p.getName() + "}").getOrElse("");
}
}
return fromPath;
}
示例2: httpOptions
public static HttpTestRequest httpOptions(String request, Map<String, String> headers) {
return new HttpTestRequest(HttpMethod.OPTIONS, request, null, HttpTestRequest.ResponseType.String, null, headers);
}