Skip to content

Instantly share code, notes, and snippets.

@lfryc
Created June 18, 2014 09:43
Show Gist options
  • Save lfryc/b206643c419e54803941 to your computer and use it in GitHub Desktop.
Save lfryc/b206643c419e54803941 to your computer and use it in GitHub Desktop.
warp-rest/impl/impl-cxf/src/main/java/org/jboss/arquillian/extension/rest/warp/impl/cxf/interceptor/CxfContextBuilder.java
303: RestContextImpl restContext = (RestContextImpl) servletRequest.getAttribute(WarpRestCommons.WARP_REST_ATTRIBUTE);
308: servletRequest.setAttribute(WarpRestCommons.WARP_REST_ATTRIBUTE, restContext);
warp-rest/impl/impl-base/src/test/java/org/jboss/arquillian/extension/rest/warp/impl/provider/RestContextProviderTestCase.java
78: when(servletRequest.getAttribute(WarpRestCommons.WARP_REST_ATTRIBUTE)).thenReturn(restContext);
141: when(servletRequest.getAttribute(WarpRestCommons.WARP_REST_ATTRIBUTE)).thenReturn(null);
warp-rest/impl/impl-base/src/main/java/org/jboss/arquillian/extension/rest/warp/impl/provider/RestContextProvider.java
62: RestContext restContext = (RestContext) request.getAttribute(WarpRestCommons.WARP_REST_ATTRIBUTE);
warp-rest/impl/impl-resteasy/src/main/java/org/jboss/arquillian/extension/rest/warp/impl/resteasy/integration/ResteasyContextBuilder.java
293: RestContextImpl restContext = (RestContextImpl) httpRequest.getAttribute(WarpRestCommons.WARP_REST_ATTRIBUTE);
298: httpRequest.setAttribute(WarpRestCommons.WARP_REST_ATTRIBUTE, restContext);
warp-rest/impl/impl-jaxrs-2.0/src/main/java/org/jboss/arquillian/extension/rest/warp/impl/jaxrs2/integration/Jaxrs2ContextBuilder.java
303: executionContext.getProperty(WarpRestCommons.WARP_REST_ATTRIBUTE);
308: executionContext.setProperty(WarpRestCommons.WARP_REST_ATTRIBUTE, restContext);
warp-rest/impl/impl-jersey/src/main/java/org/jboss/arquillian/extension/rest/warp/impl/jersey/integration/JerseyContextBuilder.java
262: RestContextImpl restContext = (RestContextImpl) servletRequest.getAttribute(WarpRestCommons.WARP_REST_ATTRIBUTE);
267: servletRequest.setAttribute(WarpRestCommons.WARP_REST_ATTRIBUTE, restContext);
warp-rest/spi/src/main/java/org/jboss/arquillian/extension/rest/warp/spi/WarpRestCommons.java
31: public static final String WARP_REST_ATTRIBUTE = "org.jboss.arquillian.warp.extension.jaxrs.spi.WARP_REST_ATTRIBUTE";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment