Re: Overriding Guice Modules

2012-09-04 Thread daviesd
Thanks. That works! Appreciate the direction. doug On 9/4/12 10:42 AM, "Stanton Sievers" wrote: > Hi Doug, > > Does the Modules.override functionality in guice help at all? I'm > wondering if you can override the DefaulyGuiceModule with a module that > does you binding. > > -Stanton > On S

Re: Overriding Guice Modules

2012-09-04 Thread daviesd
Wow! I didn't know about this. Thanks for the info. Yes, this might just work. I'll let ya know. doug On 9/4/12 10:42 AM, "Stanton Sievers" wrote: > Hi Doug, > > Does the Modules.override functionality in guice help at all? I'm > wondering if you can override the DefaulyGuiceModule with

Re: Overriding Guice Modules

2012-09-04 Thread Stanton Sievers
Hi Doug, Does the Modules.override functionality in guice help at all? I'm wondering if you can override the DefaulyGuiceModule with a module that does you binding. -Stanton On Sep 4, 2012 9:47 AM, "daviesd" wrote: > If I wanted to implement my own Authority implementation (replacing > BasicA

Overriding Guice Modules

2012-09-04 Thread daviesd
If I wanted to implement my own Authority implementation (replacing BasicAuthority) it appears that I would have to completely override the DefaultGuiceModule and just change one line to bind to my implementation. However, this means every time I upgrade artifacts I have to make sure the default im