// web.xml context-parameter specified locater
IJSFAppConfigLocater contextParamConfigLocater = new ContextParamSpecifiedJSFAppConfigLocater();
ret.add(contextParamConfigLocater);
// runtime classpath locater
IJSFAppConfigLocater classpathConfigLocater = new RuntimeClasspathJSFAppConfigLocater();
ret.add(classpathConfigLocater);
return Collections.unmodifiableList(ret);
}