Uses of Class
org.eclipse.jetty.deploy.graph.Node
-
Packages that use Node Package Description org.eclipse.jetty.deploy Jetty Deploy : Webapp Deploy Managementorg.eclipse.jetty.deploy.bindings Jetty Deploy : Standard Deployment Bindingsorg.eclipse.jetty.deploy.graph Jetty Deploy : Deployment Graph -
-
Uses of Node in org.eclipse.jetty.deploy
Fields in org.eclipse.jetty.deploy declared as Node Modifier and Type Field Description private Node
DeploymentManager.AppEntry. lifecyleNode
The lifecycle node location of this AppFields in org.eclipse.jetty.deploy with type parameters of type Node Modifier and Type Field Description private java.util.Map<Node,java.lang.Long>
DeploymentManager.AppEntry. stateTimestamps
Tracking the various AppState timestamps (in system milliseconds)Methods in org.eclipse.jetty.deploy that return Node Modifier and Type Method Description Node
DeploymentManager.AppEntry. getLifecyleNode()
Methods in org.eclipse.jetty.deploy that return types with arguments of type Node Modifier and Type Method Description java.util.Collection<Node>
DeploymentManager. getNodes()
java.util.Map<Node,java.lang.Long>
DeploymentManager.AppEntry. getStateTimestamps()
Methods in org.eclipse.jetty.deploy with parameters of type Node Modifier and Type Method Description java.util.Collection<App>
DeploymentManager. getApps(Node node)
java.util.Set<AppLifeCycle.Binding>
AppLifeCycle. getBindings(Node node)
Get all objects bound to a specificNode
void
AppLifeCycle.Binding. processBinding(Node node, App app)
Event called to process aAppLifeCycle
binding.void
AppLifeCycle. runBindings(Node node, App app, DeploymentManager deploymentManager)
(package private) void
DeploymentManager.AppEntry. setLifeCycleNode(Node node)
-
Uses of Node in org.eclipse.jetty.deploy.bindings
Methods in org.eclipse.jetty.deploy.bindings with parameters of type Node Modifier and Type Method Description void
DebugBinding. processBinding(Node node, App app)
void
DebugListenerBinding. processBinding(Node node, App app)
void
GlobalWebappConfigBinding. processBinding(Node node, App app)
void
OrderedGroupBinding. processBinding(Node node, App app)
void
StandardDeployer. processBinding(Node node, App app)
void
StandardStarter. processBinding(Node node, App app)
void
StandardStopper. processBinding(Node node, App app)
void
StandardUndeployer. processBinding(Node node, App app)
-
Uses of Node in org.eclipse.jetty.deploy.graph
Fields in org.eclipse.jetty.deploy.graph declared as Node Modifier and Type Field Description private Node
Edge. _from
private Node
Edge. _to
Fields in org.eclipse.jetty.deploy.graph with type parameters of type Node Modifier and Type Field Description private java.util.Set<Node>
Graph. _nodes
private java.util.List<Node>
Path. _nodes
Methods in org.eclipse.jetty.deploy.graph that return Node Modifier and Type Method Description Node
Path. firstNode()
Node
Edge. getFrom()
Node
Path. getNode(int index)
Node
Graph. getNodeByName(java.lang.String name)
Get the Node by Name.Node
Edge. getTo()
Node
Path. lastNode()
Methods in org.eclipse.jetty.deploy.graph that return types with arguments of type Node Modifier and Type Method Description java.util.List<Node>
Path. getEdges()
java.util.Set<Node>
Graph. getNodes()
java.util.List<Node>
Path. getNodes()
Methods in org.eclipse.jetty.deploy.graph with parameters of type Node Modifier and Type Method Description private void
Graph. addEdge(Node fromNode, Node toNode)
void
Graph. addNode(Node node)
private Path
Graph. breadthFirst(Node from, Node destination, java.util.concurrent.CopyOnWriteArrayList<Path> paths, java.util.Set<Edge> seen)
int
GraphOutputDot.TopNodeSort. compare(Node o1, Node o2)
java.util.Set<Edge>
Graph. findEdges(Node node)
Find all edges that are connected to the specific node, both as an outgoingEdge.getFrom()
or incomingEdge.getTo()
end point.java.util.Set<Edge>
Graph. findEdgesFrom(Node from)
Find all edges that are connectedEdge.getFrom()
the specific node.Path
Graph. getPath(Node from, Node to)
Using BFS (Breadth First Search) return the path from a any arbitrary node to any other.void
Graph. insertNode(Edge edge, Node node)
Insert an arbitrary node on an existing edge.void
Graph. removeNode(Node node)
private static java.lang.CharSequence
GraphOutputDot. toId(Node node)
private java.text.CollationKey
GraphOutputDot.TopNodeSort. toKey(Node node)
private static void
GraphOutputDot. writeNode(java.io.PrintWriter out, Node node)
Method parameters in org.eclipse.jetty.deploy.graph with type arguments of type Node Modifier and Type Method Description void
Graph. setNodes(java.util.Set<Node> nodes)
Constructors in org.eclipse.jetty.deploy.graph with parameters of type Node Constructor Description Edge(Node from, Node to)
-