List<PropertySource> list = new ArrayList<PropertySource>();
CustomPropertySource customPropertySource = new CustomPropertySource();
list.add( customPropertySource );
MultiNamespaceCustomPropertySource mncps = new MultiNamespaceCustomPropertySource();
list.add( mncps );
BeanPropertySource beanPropertySource = new BeanPropertySource();
list.add( beanPropertySource);
return list;
}