is it possible to define a bean with the use of static final fields of CoreProtocolPNames class like this:
Something like this (Spring 2.5)
Where util namespace is from xmlns:util="http://www.springframework.org/schema/util"
But for Spring 3, it would be cleaner to use the @Value annotation and the expression language. Which looks like this:
public class Bar {
@Value("T(java.lang.Integer).MAX_VALUE")
private Integer myValue;
}