Searched refs:mapper (Results 1 - 20 of 20) sorted by relevance

/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/
H A DWebConnector.java72 if (mapper == null){
73 mapper = new V3Mapper();
77 ((V3Mapper) mapper).setAdapter(getAdapter());
H A DWebContainer.java76 import com.sun.grizzly.util.http.mapper.Mapper;
77 import com.sun.grizzly.util.http.mapper.MappingData;
797 Mapper mapper) {
817 if (mapper == null) {
822 mapper = m;
842 mapper.map(host, mb, md);
884 connector.setMapper(mapper);
2062 Mapper mapper = conn.getMapper();
2064 mapper.setDefaultContextPath(virtualServer.getName(),
2067 mapper
795 createHttpListener(NetworkListener listener, HttpService httpService, Mapper mapper) argument
3197 updateMapper(HttpService httpService, NetworkListener httpListener, Mapper mapper) argument
[all...]
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/
H A DMapperUpdateListener.java45 import com.sun.grizzly.util.http.mapper.Mapper;
54 void update(HttpService httpService, NetworkListener httpListener, Mapper mapper); argument
H A DSnifferAdapter.java53 import com.sun.grizzly.util.http.mapper.MappingData;
64 * These adapters are temporarily registered to the mapper to handle static
88 private ContainerMapper mapper; field in class:SnifferAdapter
91 public void initialize(Sniffer sniffer, ContainerMapper mapper) { argument
93 this.mapper = mapper;
164 adapter = mapper.mapUriWithSemicolon(req, decodedURI, 0, null);
H A DContainerMapper.java64 import com.sun.grizzly.util.http.mapper.Mapper;
65 import com.sun.grizzly.util.http.mapper.MappingData;
79 * Container's mapper which maps {@link ByteBuffer} bytes representation to an {@link Adapter}, {@link
89 private Mapper mapper; field in class:ContainerMapper
151 * @param mapper
153 protected void setMapper(Mapper mapper) { argument
154 this.mapper = mapper;
164 mapper.setDefaultHostName(defaultHostName);
165 mapper
[all...]
H A DGrizzlyProxy.java55 import com.sun.grizzly.util.http.mapper.Mapper;
137 V3Mapper mapper = null;
138 // mapper initialization now happens *before* the GrizzlyListener
146 mapper = new V3Mapper(logger);
147 mapper.setPort(portNumber);
148 mapper.setId(networkListener.getName());
152 adapter.setMapper(mapper);
156 Inhabitant<Mapper> onePortMapper = new ExistingSingletonInhabitant<Mapper>(mapper);
213 grizzlyService.notifyMapperUpdateListeners(networkListener, mapper);
H A DGrizzlyService.java76 import com.sun.grizzly.util.http.mapper.Mapper;
298 * @param mapper new {@link Mapper} value
301 Mapper mapper) {
304 listener.update(httpService, networkListener, mapper);
300 notifyMapperUpdateListeners(NetworkListener networkListener, Mapper mapper) argument
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/
H A DMapperListener.java62 import com.sun.grizzly.util.http.mapper.Mapper;
63 import com.sun.grizzly.util.http.mapper.MappingData;
98 * Associated mapper.
100 protected transient Mapper mapper = null; field in class:MapperListener
135 * Create mapper listener.
137 public MapperListener(Mapper mapper) { argument
138 this.mapper = mapper;
184 * Initialize associated mapper.
189 mapper
[all...]
H A DConnector.java65 import com.sun.grizzly.util.http.mapper.Mapper;
366 protected Mapper mapper; field in class:Connector
682 * Return the mapper.
685 return mapper;
690 * @param mapper
692 public void setMapper(Mapper mapper){ argument
693 this.mapper = mapper;
1303 if (mapper == null){
1304 mapper
[all...]
H A DCoyoteAdapter.java68 import com.sun.grizzly.util.http.mapper.MappingData;
H A DRequest.java73 import com.sun.grizzly.util.http.mapper.MappingData;
/glassfish-3.1.2/ha/ha-shoal-store/src/main/java/org/shoal/ha/store/
H A DGlassFishKeyMapper.java45 import org.shoal.ha.mapper.DefaultKeyMapper;
H A DReplicatedBackingStoreFactory.java50 import org.shoal.ha.mapper.KeyMapper;
73 conf.getVendorSpecificSettings().put("key.mapper", keyMapper);
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/grizzly/
H A DV3Mapper.java44 import com.sun.grizzly.util.http.mapper.Mapper;
H A DContextMapper.java48 import com.sun.grizzly.util.http.mapper.Mapper;
142 * Sets the id of the associated http-listener on this mapper.
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/reconfig/
H A DWebConfigListener.java55 import com.sun.grizzly.util.http.mapper.Mapper;
184 Mapper mapper) {
185 container.updateMapper(httpService, httpListener, mapper);
183 update(HttpService httpService, NetworkListener httpListener, Mapper mapper) argument
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/
H A DContext.java61 import com.sun.grizzly.util.http.mapper.Mapper;
129 * Return the Locale to character set mapper for this Context.
135 * Set the Locale to character set mapper for this Context.
137 * @param mapper The new mapper
139 void setCharsetMapper(CharsetMapper mapper); argument
320 * Get the request dispatcher mapper.
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DStandardContext.java63 import com.sun.grizzly.util.http.mapper.AlternateDocBase;
64 import com.sun.grizzly.util.http.mapper.Mapper;
65 import com.sun.grizzly.util.http.mapper.MappingData;
227 * The Locale to character set mapper for this application.
379 * The mapper associated with this context.
381 private transient Mapper mapper = new Mapper(); field in class:StandardContext
922 * Return the Locale to character set mapper for this Context.
926 // Create a mapper the first time it is requested
941 * Set the Locale to character set mapper for this Context.
943 * @param mapper Th
945 setCharsetMapper(CharsetMapper mapper) argument
1898 setCharsetMapperClass(String mapper) argument
[all...]
/glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/mbean/
H A DAMXImplBase.java820 final ThrowableMapper mapper = new ThrowableMapper(e);
821 final Throwable mapped = mapper.map();
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/servlets/
H A DDefaultServlet.java62 import com.sun.grizzly.util.http.mapper.AlternateDocBase;

Completed in 290 milliseconds