本文整理汇总了Java中org.apache.oltu.oauth2.common.message.OAuthResponse.getResponseStatus方法的典型用法代码示例。如果您正苦于以下问题:Java OAuthResponse.getResponseStatus方法的具体用法?Java OAuthResponse.getResponseStatus怎么用?Java OAuthResponse.getResponseStatus使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.oltu.oauth2.common.message.OAuthResponse
的用法示例。
在下文中一共展示了OAuthResponse.getResponseStatus方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: writeOAuthJsonResponse
import org.apache.oltu.oauth2.common.message.OAuthResponse; //导入方法依赖的package包/类
public static void writeOAuthJsonResponse(HttpServletResponse response, OAuthResponse oAuthResponse) {
final int responseStatus = oAuthResponse.getResponseStatus();
try {
final Map<String, String> headers = oAuthResponse.getHeaders();
for (String key : headers.keySet()) {
response.addHeader(key, headers.get(key));
}
// CORS setting
response.setHeader("Access-Control-Allow-Origin", "*");
response.setContentType(OAuth.ContentType.JSON); //json
response.setStatus(responseStatus);
final PrintWriter out = response.getWriter();
out.print(oAuthResponse.getBody());
out.flush();
} catch (IOException e) {
throw new IllegalStateException("Write OAuthResponse error", e);
}
}