Re: ObjectUtils

2013-07-04 Thread Romain Manni-Bucau
Contains(null) doesnt test all values Le 5 juil. 2013 05:21, Julien Aymé julien.a...@gmail.com a écrit : Hi, Instead of using a predicate, wouldn't it be simpler to just use if (false == Arrays.asList(obj1, obj2, ...).contains(null)) ? Just my 2 cents, Julien 2013/7/5 Romain Manni-Bucau

Re: ObjectUtils

2013-07-04 Thread Romain Manni-Bucau
if (false == Arrays.asList(obj1, obj2, ...).contains(null)) ? Just my 2 cents, Julien 2013/7/5 Romain Manni-Bucau rmannibu...@gmail.com: Hi I'd just provide a IsNullPredicate class (a singleton) and then use commons-collection to select the subcollection and if size is 0 or original size

Re: [DBCP] Possible strategy for multiple JDBC version support

2013-06-04 Thread Romain Manni-Bucau
Hi Modules would make sense too (instead of classifier). That said using asm to generate classes for older versions would be simple enough to get a single artifact with N impl in different packages. Le 4 juin 2013 12:39, sebb seb...@gmail.com a écrit : On 4 June 2013 11:16, Jörg Schaible

Re: Creating CSVFormats (again :)

2013-05-23 Thread Romain Manni-Bucau
) private Date date; ... } Basically it would create: 1) fluent API 2) constructors 3) annotations Technically all is simple but some consistency between them should be ensured (maybe they could be generated from a list of available configs + defaults) *Romain Manni-Bucau* *Twitter

Re: Creating CSVFormats (again :)

2013-05-21 Thread Romain Manni-Bucau
is more complicated to handle from the lib side IMO. *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http://rmannibucau.wordpress.com/ *LinkedIn: **http://fr.linkedin.com/in/rmannibucau* *Github: https://github.com/rmannibucau

Re: [monitoring] Java version

2013-05-20 Thread Romain Manni-Bucau
Hi you can still add the methods without @Override, it will make it happy for both jvm. That said using proxies is another solution which works better in general for such cases IMO. *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http

Re: Creating CSVFormats (again :)

2013-05-20 Thread Romain Manni-Bucau
Hi A real inline builder (withDelimiter(...)...) is better to get completion and linear reading of the code IMO Static imports are not fine for everbody from my experience Le 20 mai 2013 22:05, Benedikt Ritter brit...@apache.org a écrit : Hi guys, a while back we had this discussion [1]

Re: Creating CSVFormats (again :)

2013-05-20 Thread Romain Manni-Bucau
you dont configure/build sthg, you just call sthg line by line. Le 21 mai 2013 00:42, sebb seb...@gmail.com a écrit : On 20 May 2013 21:07, Romain Manni-Bucau rmannibu...@gmail.com wrote: Hi A real inline builder (withDelimiter(...)...) is better to get completion and linear reading

Re: [BeanUtils] Removing @author tags?

2013-03-05 Thread Romain Manni-Bucau
Hi FYI it seems @author is discouraged: http://mail-archives.apache.org/mod_mbox/jakarta-jmeter-dev/200402.mbox/%3c4039f65e.7020...@atg.com%3E Le 5 mars 2013 22:46, Niall Pemberton niall.pember...@gmail.com a écrit : On Sun, Mar 3, 2013 at 10:43 AM, Benedikt Ritter brit...@apache.org wrote:

Re: commons-monitoring?

2013-02-17 Thread Romain Manni-Bucau
the point is the view is the less important part here IMO how data are captured is far more important (collector + aggregator, both on the same node, ..., queuing system, synchronous storing...) *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http

Re: commons-monitoring?

2013-02-16 Thread Romain Manni-Bucau
And better to start to enhance it Wdyt? Le 16 févr. 2013 22:34, Paul Libbrecht p...@hoplahup.net a écrit : Javamelody a part of apache-commons? That would feel really cool to my eyes. pual On 16 févr. 2013, at 20:54, Emeric wrote: Hi, To be a bit more precise, the license of

Re: commons-monitoring?

2013-02-14 Thread Romain Manni-Bucau
a good start for me, i like the GUI but the measure and the config is not so friendly (and results seems wrong) *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http://rmannibucau.wordpress.com/ *LinkedIn: **http

Re: commons-monitoring?

2013-02-13 Thread Romain Manni-Bucau
basically having a commons.Interceptor api can be interesting then we simply need to map to spring and cdi this is done in shiro for instance and works very well *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http

Re: commons-monitoring?

2013-02-13 Thread Romain Manni-Bucau
that's not natural true for spring i think *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http://rmannibucau.wordpress.com/ *LinkedIn: **http://fr.linkedin.com/in/rmannibucau* *Github: https://github.com/rmannibucau* 2013

Re: commons-monitoring?

2013-02-12 Thread Romain Manni-Bucau
for what metrics calls HealthCheck (checks the state of a resource like a datasource) wdyt? *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http://rmannibucau.wordpress.com/ *LinkedIn: **http://fr.linkedin.com/in/rmannibucau

Re: commons-monitoring?

2013-02-12 Thread Romain Manni-Bucau
jamon or the more recent javasimon, moskito (even if not completely written and buggy)... are better candidates IMO *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http://rmannibucau.wordpress.com/ *LinkedIn: **http

Re: commons-monitoring?

2013-02-12 Thread Romain Manni-Bucau
yep but they have the whole stack i spoke about (even if core if not that good as you said) *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http://rmannibucau.wordpress.com/ *LinkedIn: **http://fr.linkedin.com/in/rmannibucau

<    1   2   3   4   5   6