All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wings.session.ResourceMapper Maven / Gradle / Ivy

The newest version!
package org.wings.session;

import org.wings.Resource;

/**
 * Maps an URL to a resource.
 */
public interface ResourceMapper
{
    /**
     * @param url the URL to be mapped to a resource 
     * @return the corresponding resource or null, if the resource mapper cannot resolve the url
     */
    Resource mapResource(String url);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy