use of org.apache.camel.http.common.cookie.InstanceCookieHandler in project camel by apache.
the class HttpProducerSessionTest 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.InstanceCookieHandler in project camel by apache.
the class HttpProducerSessionTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndiRegistry = super.createRegistry();
jndiRegistry.bind("instanceCookieHandler", new InstanceCookieHandler());
jndiRegistry.bind("exchangeCookieHandler", new ExchangeCookieHandler());
jndiRegistry.bind("noopCookieStore", new NoopCookieStore());
return jndiRegistry;
}
use of org.apache.camel.http.common.cookie.InstanceCookieHandler in project camel by apache.
the class CxfProducerSessionTest 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