{"id":1626,"date":"2018-04-15T03:56:41","date_gmt":"2018-04-14T18:56:41","guid":{"rendered":"http:\/\/sparkling-software.club\/pekublog\/?page_id=1626"},"modified":"2018-04-21T18:00:28","modified_gmt":"2018-04-21T09:00:28","slug":"statusresultmatchers%e3%81%ae%e3%83%a1%e3%82%bd%e3%83%83%e3%83%89%e4%b8%80%e8%a6%a7","status":"publish","type":"page","link":"http:\/\/sparkling-software.club\/pekublog\/?page_id=1626","title":{"rendered":"StatusResultMatchers\u306e\u30e1\u30bd\u30c3\u30c9\u4e00\u89a7"},"content":{"rendered":"<p>\u25a0StatusResultMatchers\u306e\u30e1\u30bd\u30c3\u30c9\u4e00\u89a7<\/p>\n<table style=\"width: 100%;table-layout: fixed;word-break: break-all;word-wrap: break-all;\">\n<tbody>\n<tr>\n<td>public ResultMatcher is(final Matcher<Integer> matcher)<\/td>\n<td>HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u3092\u691c\u8a3c\u3059\u308b<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u304cOK(200)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n  .andExpect(status().is(HttpServletResponse.SC_OK));\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher is(final int status)<\/td>\n<td>HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u3092\u6570\u5024\u7528\u306eMatcher\u3092\u4f7f\u3063\u3066\u691c\u8a3c\u3059\u308b<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u304c\u6210\u529f(200)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n  .andExpect(status().is(is(200)));\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u304c\u6210\u529f\u7cfb(200\u756a\u53f0=200\u4ee5\u4e0a299\u4ee5\u4e0b)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n  .andExpect(status().is(greaterThanOrEqualTo(200)))\r\n  .andExpect(status().is(lessThanOrEqualTo(299)));\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher is1xxInformational()<\/td>\n<td>HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u304c1xx(100\u756a\u53f0,\u51e6\u7406\u7d99\u7d9a)\u304b\u691c\u8a3c\u3059\u308b<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u304c1xx(100\u756a\u53f0)\u3067\u3042\u308b\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n  .andExpect(status().is1xxInformational());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher is2xxSuccessful()<\/td>\n<td>HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u304c2xx(200\u756a\u53f0,\u6210\u529f)\u304b\u691c\u8a3c\u3059\u308b<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u304c2xx(200\u756a\u53f0)\u3067\u3042\u308b\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n  .andExpect(status().is2xxSuccessful());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher is3xxRedirection()<\/td>\n<td>HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u304c3xx(300\u756a\u53f0,\u30ea\u30c0\u30a4\u30ec\u30af\u30c8)\u304b\u691c\u8a3c\u3059\u308b<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u304c3xx(300\u756a\u53f0)\u3067\u3042\u308b\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n  .andExpect(status().is3xxRedirection());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher is4xxClientError()<\/td>\n<td>HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u304c4xx(400\u756a\u53f0,\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30a8\u30e9\u30fc)\u304b\u691c\u8a3c\u3059\u308b<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u304c4xx(400\u756a\u53f0)\u3067\u3042\u308b\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n  .andExpect(status().is4xxClientError());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher is5xxServerError()<\/td>\n<td>HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u304c5xx(500\u756a\u53f0,\u30b5\u30fc\u30d0\u30fc\u30a8\u30e9\u30fc)\u304b\u691c\u8a3c\u3059\u308b<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u304c5xx(500\u756a\u53f0)\u3067\u3042\u308b\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n  .andExpect(status().is5xxServerError());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher reason(final Matcher<? super String> matcher)<\/td>\n<td>\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092Matcher\u3092\u4f7f\u3063\u3066\u691c\u8a3c\u3059\u308b<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u304c&quot;bad request message&quot;\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().reason(hasToString(&quot;bad request message&quot;)))\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u306b&quot;message&quot;\u304c\u542b\u307e\u308c\u308b\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().reason(hasToString(containsString(&quot;message&quot;))))\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher reason(final String reason)<\/td>\n<td>\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u691c\u8a3c\u3059\u308b<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u304c&quot;bad request message&quot;\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().reason(&quot;bad request message&quot;))\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isContinue()<\/td>\n<td\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(100)><\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Continue&quot;(100)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isContinue());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isSwitchingProtocols()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(101)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Switching Protocols&quot;(101)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isSwitchingProtocols());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isProcessing()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(102)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Processing&quot;(102)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isProcessing());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isCheckpoint()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(103)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Checkpoint&quot;(103)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isCheckpoint());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isOk()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(200)\n<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;OK&quot;(200)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isOk());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isCreated()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(201)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Created&quot;(201)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isCreated());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isAccepted()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(202)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Accepted&quot;(202)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isAccepted());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isNonAuthoritativeInformation()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(203)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Non-Authoritative Information&quot;(203)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isNonAuthoritativeInformation());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isNoContent()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(204)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;No Content&quot;(204)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isNoContent());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isResetContent()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(205)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Reset Content&quot;(205)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isResetContent());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isPartialContent()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(206)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Partial Content&quot;(206)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isPartialContent());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isMultiStatus()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(207)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Multi-Status&quot;(207)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isMultiStatus());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isAlreadyReported()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(208)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Already Reported&quot;(208)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isAlreadyReported());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isImUsed()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(226)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;IM Used&quot;(226)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isImUsed());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isMultipleChoices()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(300)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Multiple Choices&quot;(300)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isMultipleChoices());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isMovedPermanently()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(301)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Moved Permanently&quot;(301)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isMovedPermanently());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isFound()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(302)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Found&quot;(302)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isFound());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isMovedTemporarily()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(302)<br \/>\u203bDeprecated\u5bfe\u8c61<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Moved Temporarily&quot;(302)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isMovedTemporarily());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isSeeOther()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(303)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;See Other&quot;(303)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isSeeOther());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isNotModified()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(304)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Not Modified&quot;(304)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isNotModified());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isUseProxy()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(305)<br \/>\u203bDeprecated\u5bfe\u8c61<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Use Proxy&quot;(305)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isUseProxy());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isTemporaryRedirect()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(307)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Temporary Redirect&quot;(307)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isTemporaryRedirect());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isPermanentRedirect()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(308)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Permanent Redirect&quot;(308)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isPermanentRedirect());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isBadRequest()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(400)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Bad Request&quot;(400)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isBadRequest());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isUnauthorized()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(401)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Unauthorized&quot;(401)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isUnauthorized());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isPaymentRequired()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(402)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Payment Required&quot;(402)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isPaymentRequired());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isForbidden()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(403)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Forbidden&quot;(403)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isForbidden());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isNotFound()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(404)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Not Found&quot;(404)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isNotFound());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isMethodNotAllowed()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(405)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Method Not Allowed&quot;(405)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isMethodNotAllowed());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isNotAcceptable()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(406)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Not Acceptable&quot;(406)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isNotAcceptable());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isProxyAuthenticationRequired()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(407)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Proxy Authentication Required&quot;(407)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isProxyAuthenticationRequired());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isRequestTimeout()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(408)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Request Timeout&quot;(408)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isRequestTimeout());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isConflict()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(409)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Conflict&quot;(409)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isConflict());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isGone()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(410)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Gone&quot;()\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isGone());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isLengthRequired()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(411)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Length Required&quot;(411)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isLengthRequired());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isPreconditionFailed()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(412)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Precondition failed&quot;(412)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isPreconditionFailed());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isPayloadTooLarge()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(413)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Payload Too Large&quot;(413)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isPayloadTooLarge());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isRequestEntityTooLarge()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(413)<br \/>\u203bDeprecated\u5bfe\u8c61<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Request Entity Too Large&quot;(413)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isRequestEntityTooLarge());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isUriTooLong()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(414)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;URI Too Long&quot;(414)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isUriTooLong());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isRequestUriTooLong()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(414)<br \/>\u203bDeprecated\u5bfe\u8c61<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Request-URI Too Long&quot;(414)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isRequestUriTooLong());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isUnsupportedMediaType()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(415)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Unsupported Media Type&quot;(415)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isUnsupportedMediaType());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isRequestedRangeNotSatisfiable()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(416)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Requested Range Not Satisfiable&quot;(416)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isRequestedRangeNotSatisfiable());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isExpectationFailed()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(417)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Expectation Failed&quot;(417)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isExpectationFailed());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isIAmATeapot()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(418)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;I'm a teapot&quot;(418)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isIAmATeapot());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isInsufficientSpaceOnResource()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(419)<br \/>\u203bDeprecated\u5bfe\u8c61<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Insufficient Space On Resource&quot;(419)\u203b\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isInsufficientSpaceOnResource());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isMethodFailure()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(420)<br \/>\u203bDeprecated\u5bfe\u8c61<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Method Failure&quot;(420)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isMethodFailure());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isDestinationLocked()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(421)<br \/>\u203bDeprecated\u5bfe\u8c61<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Destination Locked&quot;(421)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isDestinationLocked());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isUnprocessableEntity()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(422)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Unprocessable Entity&quot;(422)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isUnprocessableEntity());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isLocked()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(423)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Locked&quot;()\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isLocked());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isFailedDependency()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(424)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Failed Dependency&quot;(424)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isFailedDependency());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isUpgradeRequired()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(426)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Upgrade Required&quot;(426)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isUpgradeRequired());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isPreconditionRequired()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(428)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Precondition Required&quot;(428)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isPreconditionRequired());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isTooManyRequests()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(429)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Too Many Requests&quot;(429)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isTooManyRequests());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isRequestHeaderFieldsTooLarge()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(431)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Request Header Fields Too Large&quot;(431)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isRequestHeaderFieldsTooLarge());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isUnavailableForLegalReasons()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(451)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Unavailable For Legal Reasons&quot;(451)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isUnavailableForLegalReasons());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isInternalServerError()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(500)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Internal Server Error&quot;(500)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isInternalServerError());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isNotImplemented()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(501)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Not Implemented&quot;(501)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isNotImplemented());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isBadGateway()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(502)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Bad Gateway&quot;(502)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isBadGateway());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isServiceUnavailable()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(503)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Service Unavailable&quot;(503)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isServiceUnavailable());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isGatewayTimeout()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(504)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Gateway Timeout&quot;(504)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isGatewayTimeout());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isHttpVersionNotSupported()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(505)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot; HTTP Version Not Supported&quot;(505)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isHttpVersionNotSupported());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isVariantAlsoNegotiates()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(506)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Variant Also Negotiates&quot;(506)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isVariantAlsoNegotiates());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isInsufficientStorage()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(507)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Insufficient Storage&quot;(507)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isInsufficientStorage());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isLoopDetected()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(508)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Loop Detected&quot;(508)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isLoopDetected());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isBandwidthLimitExceeded()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(509)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Bandwidth Limit Exceeded&quot;(509)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isBandwidthLimitExceeded());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isNotExtended()<\/td>\n<td>\n\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(510)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Not Extended&quot;(510)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isNotExtended());\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>public ResultMatcher isNetworkAuthenticationRequired()<\/td>\n<td>\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u8a3c\u3059\u308b(511)<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\">\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n\u5b9f\u884c\u4f8b\uff09\u30ec\u30b9\u30dd\u30f3\u30b9\u30b3\u30fc\u30c9\u304c&quot;Network Authentication Required&quot;(511)\r\nMockMvc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8.perform(get(&quot;\/&quot;)\r\n    .andExpect(status().isNetworkAuthenticationRequired());\r\n<\/pre>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<fieldset style=\"border-style: solid; border-width: 1px;\">\n<legend><strong>\u5e83\u544a<\/strong><\/legend>\n<p><script src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\" async=\"\"><\/script><!-- \u30ec\u30af\u30bf\u30f3\u30b0\u30eb\u5e83\u544a --> <ins class=\"adsbygoogle\" style=\"display: inline-block; width: 336px; height: 280px;\" data-ad-client=\"ca-pub-0101691122871550\" data-ad-slot=\"7066468215\"><\/ins><script>\/\/ <![CDATA[\n(adsbygoogle = window.adsbygoogle || []).push({});\n\/\/ ]]><\/script><\/fieldset>\n","protected":false},"excerpt":{"rendered":"<p>\u25a0StatusResultMatchers\u306e\u30e1\u30bd\u30c3\u30c9\u4e00\u89a7 public ResultMatcher is(final Matcher matcher) HTTP\u30b9\u30c6\u30fc\u30bf\u30b9\u3092\u691c\u8a3c\u3059\u308b public ResultMatche [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"_links":{"self":[{"href":"http:\/\/sparkling-software.club\/pekublog\/index.php?rest_route=\/wp\/v2\/pages\/1626"}],"collection":[{"href":"http:\/\/sparkling-software.club\/pekublog\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"http:\/\/sparkling-software.club\/pekublog\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"http:\/\/sparkling-software.club\/pekublog\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"http:\/\/sparkling-software.club\/pekublog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1626"}],"version-history":[{"count":12,"href":"http:\/\/sparkling-software.club\/pekublog\/index.php?rest_route=\/wp\/v2\/pages\/1626\/revisions"}],"predecessor-version":[{"id":1745,"href":"http:\/\/sparkling-software.club\/pekublog\/index.php?rest_route=\/wp\/v2\/pages\/1626\/revisions\/1745"}],"wp:attachment":[{"href":"http:\/\/sparkling-software.club\/pekublog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1626"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}