Access Config settings in Model

I have a question about how to access config settings inside the
model.
I am using cfproperty for all dp injections. How would I access these
settings inside the model?
I prefer not to pass them in from the handler but to be able to access
tem directly in the model.
// custom settings
    settings = {
      jsmin_cacheLocation = "includes/cache",
      rss1 = "http://pipes.yahoo.com/pipes/pipe.run?
_id=DiFb6TGZ3RGLT5RVrbQIDg&_render=rss",
      rss2 = "http://pipes.yahoo.com/pipes/pipe.run?
_id=vmi9vYCZ3RGJxfQt_w6H4A&_render=rss",
      rss3 = "http://pipes.yahoo.com/pipes/pipe.run?
_id=ujjVCj4A3hGl73s__w6H4A&_render=rss"
    };
I have been trying this but it does not recognize controller variable

<cfargument name="rss1" type="string" required="no"
default="#cbcontroller.getSetting('setting').rss1#" />

Thanks for your help in advance.

You can use the coldbox:setting:name in the cfproperty. Or you can inject a full config bean that has all the configuration variables using: coldbox:configbean

Here is how I tried to access it but my syntax is wrong.

<cfproperty name="rss1" type="coldbox:setting:name"
scope="variables" />

<cfargument name="rss1" type="string" required="no"
default="#variables.cbcontroller.getSetting('rss1')#" />

Error Messages: Element CBCONTROLLER is undefined in a Java object of
type class [Ljava.lang.String;.

What is the correct syntax?

Thanks for your help in advance.

use inject instead of type
Luis F. Majano
President
Ortus Solutions, Corp

ColdBox Platform: http://www.coldbox.org
Linked In: http://www.linkedin.com/pub/3/731/483
Blog: http://www.luismajano.com
IECFUG Manager: http://www.iecfug.com