* Gets the PathResolver of this config
* - only RequestProcessor configs have PathResolvers set.
* @return PathResolver or null if config has no PathResolver
*/
public PathResolver getPathResolver() {
PathResolver pathResolver = new PathResolver(this, this.getApplicationRule());
if (pathResolver != null) {
log.debug("Loaded Pathresolver for " + this.getName());
} else {
log.error("Could not initialize Pathresolver for " + this.getName());
}