private FilterDescriptorImpl(Class<?> filterClass, ComponentLifecycleScope scope)
{
final Path p = filterClass.getAnnotation(Path.class);
if (p != null)
{
this.path = new PathValue(p.value());
this.uriPattern = new UriPattern(p.value());
}
else
{
this.path = null;