/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/ |
H A D | ContainerServlet.java | 88 * @param wrapper The new associated Wrapper 90 public void setWrapper(Wrapper wrapper); argument
|
H A D | InstanceEvent.java | 139 * response being processed. The <code>wrapper</code> property will 151 * response being processed. The <code>wrapper</code> property will 195 * @param wrapper Wrapper managing this servlet instance 199 public InstanceEvent(Wrapper wrapper, Filter filter, EventType type) { argument 201 super(wrapper); 213 * @param wrapper Wrapper managing this servlet instance 218 public InstanceEvent(Wrapper wrapper, Filter filter, EventType type, argument 221 super(wrapper); 234 * @param wrapper Wrapper managing this servlet instance 240 public InstanceEvent(Wrapper wrapper, Filte argument 264 InstanceEvent(Wrapper wrapper, Filter filter, EventType type, ServletRequest request, ServletResponse response, Throwable exception) argument 287 InstanceEvent(Wrapper wrapper, Servlet servlet, EventType type) argument 306 InstanceEvent(Wrapper wrapper, Servlet servlet, EventType type, Throwable exception) argument 328 InstanceEvent(Wrapper wrapper, Servlet servlet, EventType type, ServletRequest request, ServletResponse response) argument 352 InstanceEvent(Wrapper wrapper, Servlet servlet, EventType type, ServletRequest request, ServletResponse response, Throwable exception) argument [all...] |
H A D | Request.java | 234 * @param wrapper The newly associated Wrapper 236 public void setWrapper(Wrapper wrapper); argument
|
/glassfish-3.1.2/security/webservices.security/src/main/java/com/sun/enterprise/security/webservices/ |
H A D | ClientPipeCloser.java | 63 public void registerListenerWrapper(ServiceReferenceDescriptor desc, AuthConfigRegistrationWrapper wrapper) { argument 64 svcRefListenerMap.put(desc,wrapper); 72 public void removeListenerWrapper(AuthConfigRegistrationWrapper wrapper) { argument 77 if (wrp == wrapper) {
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/ |
H A D | ApplicationFilterFactory.java | 120 (ServletRequest request, Wrapper wrapper, Servlet servlet) { 144 (((StandardWrapper)wrapper).getInstanceSupport()); 148 StandardContext context = (StandardContext) wrapper.getParent(); 166 String servletName = wrapper.getName(); 195 filterChain = internalCreateFilterChain(request, wrapper, 220 filterChain = internalCreateFilterChain(request, wrapper, 331 private ApplicationFilterChain internalCreateFilterChain(ServletRequest request, Wrapper wrapper, Servlet servlet) { argument 346 filterChain.setWrapper((StandardWrapper)wrapper); 119 createFilterChain(ServletRequest request, Wrapper wrapper, Servlet servlet) argument
|
H A D | ApplicationDispatcherForward.java | 110 Wrapper wrapper) 132 responseFacade, context, wrapper, statusCode); 135 if (wrapper != null) { 137 wrapper.findInitParameter(Constants.IS_DEFAULT_ERROR_PAGE_ENABLED_INIT_PARAM); 177 Wrapper wrapper, 205 wrapper, 107 commit(ServletRequest request, ServletResponse response, Context context, Wrapper wrapper) argument 173 status(HttpServletRequest request, HttpServletResponse response, ResponseFacade responseFacade, Context context, Wrapper wrapper, int statusCode) argument
|
H A D | ApplicationFilterChain.java | 138 * The wrapper around the servlet instance to be executed by this chain. 140 private StandardWrapper wrapper = null; field in class:ApplicationFilterChain 225 if (wrapper == null) { 226 throw new IllegalStateException("Missing wrapper"); 229 InstanceSupport support = wrapper.getInstanceSupport(); 343 wrapper.service(request, response, servlet, requestFacade); 369 * Release references to the filters and wrapper executed by this chain. 375 wrapper = null; 393 * Sets the wrapper of the Servlet that will be executed at the end of 396 * @param wrapper th 399 setWrapper(StandardWrapper wrapper) argument [all...] |
H A D | DynamicServletRegistrationImpl.java | 57 public DynamicServletRegistrationImpl(StandardWrapper wrapper, argument 59 super(wrapper, ctx); 66 "load-on-startup", wrapper.getName(), 70 wrapper.setLoadOnStartup(loadOnStartup); 77 "async-supported", wrapper.getName(), 81 wrapper.setIsAsyncSupported(isAsyncSupported); 93 "multipart-config", wrapper.getName(), 97 wrapper.setMultipartLocation(mpConfig.getLocation()); 98 wrapper.setMultipartMaxFileSize(mpConfig.getMaxFileSize()); 99 wrapper [all...] |
H A D | ServletRegistrationImpl.java | 55 protected StandardWrapper wrapper; field in class:ServletRegistrationImpl 61 public ServletRegistrationImpl(StandardWrapper wrapper, argument 63 this.wrapper = wrapper; 68 return wrapper.getName(); 76 return wrapper; 80 return wrapper.getServletClassName(); 84 return wrapper.getJspFile(); 91 "init parameter", wrapper.getName(), 94 return wrapper [all...] |
H A D | ApplicationDispatcher.java | 151 // Request wrapper we have created and installed (if any). 154 // Response wrapper we have created and installed (if any). 177 * @param wrapper The Wrapper associated with the resource that will 189 (Wrapper wrapper, String requestURI, String servletPath, 195 this.wrapper = wrapper; 196 this.context = (Context) wrapper.getParent(); 274 private Wrapper wrapper = null; field in class:ApplicationDispatcher 345 context, wrapper); 359 context, wrapper); 188 ApplicationDispatcher(Wrapper wrapper, String requestURI, String servletPath, String pathInfo, String queryString, String name) argument [all...] |
H A D | DummyRequest.java | 88 protected Wrapper wrapper = null; field in class:DummyRequest 166 return (this.wrapper); 169 public void setWrapper(Wrapper wrapper) { argument 170 this.wrapper = wrapper;
|
H A D | StandardContext.java | 1862 Wrapper wrapper = (Wrapper) findChild( 1864 if (wrapper !=null) { 1865 Servlet servlet = ((StandardWrapper)wrapper).getServlet(); 2033 Wrapper wrapper = (Wrapper) child; 2039 (null == wrapper.getServletClassName() && 2040 null == wrapper.getJspFile())) { 2042 (StandardWrapper) wrapper); 2045 (StandardWrapper) wrapper); 2048 if (null == wrapper.getServletClassName() && 2049 null == wrapper 2125 createServletRegistrationImpl( StandardWrapper wrapper) argument 2130 createDynamicServletRegistrationImpl( StandardWrapper wrapper) argument 3489 removePatternFromServlet(Wrapper wrapper, String pattern) argument [all...] |
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/servlets/ |
H A D | InvokerServlet.java | 116 private Wrapper wrapper = null; field in class:InvokerServlet 127 return (this.wrapper); 135 * @param wrapper The new wrapper 137 public synchronized void setWrapper(Wrapper wrapper) { argument 138 this.wrapper = wrapper; 139 if (wrapper == null) 142 context = (Context) wrapper.getParent(); 219 if ((wrapper [all...] |
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/query/util/type/ |
H A D | PrimitiveType.java | 62 protected WrapperClassType wrapper; field in class:PrimitiveType 88 return wrapper; 94 public void setWrapper(WrapperClassType wrapper) argument 96 this.wrapper = wrapper;
|
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/grizzly/ |
H A D | V3Mapper.java | 80 Object wrapper, boolean jspWildCard) { 81 super.addWrapper(hostName, contextPath, path, wrapper, jspWildCard); 84 + " wrapper " + wrapper + " path " + path + " jspWildcard " + jspWildCard); 128 // MappingData.wrapper info as this information cannot apply 79 addWrapper(String hostName, String contextPath, String path, Object wrapper, boolean jspWildCard) argument
|
H A D | ContextMapper.java | 78 final Object wrapper, final boolean jspWildCard, final String servletName, 80 super.addWrapper(hostName, contextPath, path, wrapper, jspWildCard, 84 + " wrapper " + wrapper + " path " + path + " jspWildcard " + jspWildCard + 114 // MappingData.wrapper info as this information cannot apply 77 addWrapper(final String hostName, final String contextPath, final String path, final Object wrapper, final boolean jspWildCard, final String servletName, final boolean isEmptyPathSpecial) argument
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/ |
H A D | InstanceSupport.java | 96 public InstanceSupport(Wrapper wrapper) { argument 99 this.wrapper = wrapper; 120 private Wrapper wrapper = null; field in class:InstanceSupport 131 return (this.wrapper); 184 InstanceEvent event = new InstanceEvent(wrapper, filter, type); 219 InstanceEvent event = new InstanceEvent(wrapper, filter, type, 259 InstanceEvent event = new InstanceEvent(wrapper, filter, type, 300 InstanceEvent event = new InstanceEvent(wrapper, filter, type, 335 InstanceEvent event = new InstanceEvent(wrapper, servle [all...] |
/glassfish-3.1.2/persistence/cmp/utility/src/main/java/com/sun/jdo/spi/persistence/utility/ |
H A D | JavaTypeHelper.java | 55 * name, and various wrapper and primitive type methods. 61 /** Map of primitive to wrapper classes */ 67 /** Map of primitive names to wrapper names */ 70 /** Map of wrapper classes to primitive names*/ 155 // ================= primitive/wrapper class utilities ==================== 157 /** Returns the wrapper class associated with the supplied primitive class. 159 * @return the associated wrapper class. 176 /** Returns the name of the wrapper class associated with the supplied 179 * @return the associated wrapper class name. 187 * wrapper clas 191 getPrimitiveName(Class wrapper) argument [all...] |
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/jmac/config/ |
H A D | ConfigHelper.java | 119 public void setRegistrationWrapper(AuthConfigRegistrationWrapper wrapper) { argument 120 this.listenerWrapper = wrapper;
|
/glassfish-3.1.2/security/webintegration/src/main/java/com/sun/web/security/ |
H A D | HttpRequestWrapper.java | 253 public void setWrapper(Wrapper wrapper) { argument 254 httpRequest.setWrapper(wrapper);
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/ |
H A D | ContextFacade.java | 309 StandardWrapper wrapper = new StandardWrapper(); 310 wrapper.setName(servletName); 311 wrapper.setServletClassName(className); 314 createDynamicServletRegistrationImpl((StandardWrapper) wrapper); 328 StandardWrapper wrapper) { 329 return new ServletRegistrationImpl(wrapper, this); 332 StandardWrapper wrapper) { 333 return new DynamicServletRegistrationImpl(wrapper, this); 327 createServletRegistrationImpl( StandardWrapper wrapper) argument 331 createDynamicServletRegistrationImpl( StandardWrapper wrapper) argument
|
H A D | WebModule.java | 925 * Creates an ad-hoc servlet wrapper from the given ad-hoc servlet info. 928 * ad-hoc servlet wrapper 930 * @return The generated ad-hoc servlet wrapper 1805 StandardWrapper wrapper) { 1806 return new WebServletRegistrationImpl(wrapper, this); 1811 StandardWrapper wrapper) { 1812 return new DynamicWebServletRegistrationImpl(wrapper, this); 1816 protected void removePatternFromServlet(Wrapper wrapper, String pattern) { argument 1817 super.removePatternFromServlet(wrapper, pattern); 1824 wbd.getWebComponentByCanonicalName(wrapper 1804 createServletRegistrationImpl( StandardWrapper wrapper) argument 1810 createDynamicServletRegistrationImpl( StandardWrapper wrapper) argument 2270 WebServletRegistrationImpl(StandardWrapper wrapper, StandardContext context) argument 2320 DynamicWebServletRegistrationImpl(StandardWrapper wrapper, WebModule webModule) argument 2436 processServletAnnotations( Class <? extends Servlet> clazz, WebBundleDescriptor webBundleDescriptor, WebComponentDescriptor wcd, StandardWrapper wrapper) argument [all...] |
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/ |
H A D | Request.java | 432 * Associated wrapper. 434 protected Wrapper wrapper = null; field in class:Request 524 wrapper = null; 884 return wrapper; 891 * @param wrapper The newly associated Wrapper 893 public void setWrapper(Wrapper wrapper) { argument 894 this.wrapper = wrapper; 2733 if (wrapper != null) { 2734 String realRole = wrapper [all...] |