* org.richfaces.resource.ResourceKey)
*/
@Override
public Resource createResource(FacesContext context, ResourceKey resourceKey) {
for (ResourceMapper mapper : mappers) {
ResourceMapping mapping = mapper.mapResource(resourceKey);
if (mapping != null) {
ResourcePath path = mapping.getResourcePath(context);
return new URLResource(path);
}
}
return null;