use of org.apache.camel.http.common.cookie.ExchangeCookieHandler in project camel by apache.
the class AhcProducerSessionTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndiRegistry = super.createRegistry();
jndiRegistry.bind("instanceCookieHandler", new InstanceCookieHandler());
jndiRegistry.bind("exchangeCookieHandler", new ExchangeCookieHandler());
return jndiRegistry;
}
use of org.apache.camel.http.common.cookie.ExchangeCookieHandler in project camel by apache.
the class JettyHttpProducerSessionTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndiRegistry = super.createRegistry();
jndiRegistry.bind("instanceCookieHandler", new InstanceCookieHandler());
jndiRegistry.bind("exchangeCookieHandler", new ExchangeCookieHandler());
return jndiRegistry;
}
use of org.apache.camel.http.common.cookie.ExchangeCookieHandler in project camel by apache.
the class UndertowHttpProducerSessionTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndiRegistry = super.createRegistry();
jndiRegistry.bind("instanceCookieHandler", new InstanceCookieHandler());
jndiRegistry.bind("exchangeCookieHandler", new ExchangeCookieHandler());
return jndiRegistry;
}
use of org.apache.camel.http.common.cookie.ExchangeCookieHandler in project camel by apache.
the class NettyHttpProducerSessionTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndiRegistry = super.createRegistry();
jndiRegistry.bind("instanceCookieHandler", new InstanceCookieHandler());
jndiRegistry.bind("exchangeCookieHandler", new ExchangeCookieHandler());
return jndiRegistry;
}
use of org.apache.camel.http.common.cookie.ExchangeCookieHandler in project camel by apache.
the class RestletProducerSessionTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndiRegistry = super.createRegistry();
jndiRegistry.bind("instanceCookieHandler", new InstanceCookieHandler());
jndiRegistry.bind("exchangeCookieHandler", new ExchangeCookieHandler());
return jndiRegistry;
}
Aggregations