Package org.eclipse.jetty.webapp
Class IterativeDescriptorProcessor
- java.lang.Object
-
- org.eclipse.jetty.webapp.IterativeDescriptorProcessor
-
- All Implemented Interfaces:
DescriptorProcessor
- Direct Known Subclasses:
StandardDescriptorProcessor
@Deprecated(since="2021-05-27") public abstract class IterativeDescriptorProcessor extends java.lang.Object implements DescriptorProcessor
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.IterativeDescriptorProcessor
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.Class<?>[]
__signature
Deprecated.
-
Constructor Summary
Constructors Constructor Description IterativeDescriptorProcessor()
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description abstract void
end(WebAppContext context, Descriptor descriptor)
Deprecated.void
process(WebAppContext context, Descriptor descriptor)
Deprecated.void
registerVisitor(java.lang.String nodeName, java.lang.reflect.Method m)
Deprecated.Register a method to be called back when visiting the node with the given name.abstract void
start(WebAppContext context, Descriptor descriptor)
Deprecated.
-
-
-
Method Detail
-
start
public abstract void start(WebAppContext context, Descriptor descriptor)
Deprecated.
-
end
public abstract void end(WebAppContext context, Descriptor descriptor)
Deprecated.
-
registerVisitor
public void registerVisitor(java.lang.String nodeName, java.lang.reflect.Method m)
Deprecated.Register a method to be called back when visiting the node with the given name. The method must exist on a subclass of this class, and must have the signature: public void method (Descriptor descriptor, XmlParser.Node node)- Parameters:
nodeName
- the node namem
- the method name
-
process
public void process(WebAppContext context, Descriptor descriptor) throws java.lang.Exception
Deprecated.- Specified by:
process
in interfaceDescriptorProcessor
- Throws:
java.lang.Exception
-
-