FileDocCategorySizeDatePackage
ListenerNode.javaAPI DocGlassfish v2 API2846Fri May 04 22:31:48 BST 2007com.sun.enterprise.deployment.node.web

ListenerNode

public class ListenerNode extends com.sun.enterprise.deployment.node.DeploymentDescriptorNode
This node handles the web listener xml fragment
author
Jerome Dochez

Fields Summary
Constructors Summary
Methods Summary
protected java.util.MapgetDispatchTable()
all sub-implementation of this class can use a dispatch table to map xml element to method name on the descriptor class for setting the element value.

return
the map with the element name as a key, the setter method as a value

        Map table = new HashMap();
        table.put(WebTagNames.LISTENER_CLASS, "setListener");
        return table;