.accept("text/plain").post(null, String.class);
assertEquals("ok", r);
HttpClient httpclient = new DefaultHttpClient();
HttpGet httpget = new HttpGet("http://localhost:" + PORT + "/untest/annotatedGet/HelloThere");
// this is the origin we expect to get.
httpget.addHeader("Origin", "http://area51.mil:31415");
HttpResponse response = httpclient.execute(httpget);
assertEquals(200, response.getStatusLine().getStatusCode());
assertOriginResponse(false, new String[]{"http://area51.mil:31415"}, true, response);
assertAllowCredentials(response, false);
List<String> exposeHeadersValues