Class PollableVisitorAdaptor
- java.lang.Object
-
- org.opennms.netmgt.poller.pollables.PollableVisitorAdaptor
-
- All Implemented Interfaces:
PollableVisitor
public class PollableVisitorAdaptor extends java.lang.Object implements PollableVisitor
Represents a PollableVisitorAdaptor- Version:
- $Id: $
- Author:
- Mathew Brozowski
-
-
Constructor Summary
Constructors Constructor Description PollableVisitorAdaptor()
Constructor for PollableVisitorAdaptor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
visitContainer(PollableContainer container)
visitContainervoid
visitElement(PollableElement element)
visitElementvoid
visitInterface(PollableInterface interface1)
visitInterfacevoid
visitNetwork(PollableNetwork network)
visitNetworkvoid
visitNode(PollableNode node)
visitNodevoid
visitService(PollableService service)
visitService
-
-
-
Method Detail
-
visitService
public void visitService(PollableService service)
visitService
- Specified by:
visitService
in interfacePollableVisitor
- Parameters:
service
- aPollableService
object.
-
visitInterface
public void visitInterface(PollableInterface interface1)
visitInterface
- Specified by:
visitInterface
in interfacePollableVisitor
- Parameters:
interface1
- aPollableInterface
object.
-
visitNode
public void visitNode(PollableNode node)
visitNode
- Specified by:
visitNode
in interfacePollableVisitor
- Parameters:
node
- aPollableNode
object.
-
visitNetwork
public void visitNetwork(PollableNetwork network)
visitNetwork
- Specified by:
visitNetwork
in interfacePollableVisitor
- Parameters:
network
- aPollableNetwork
object.
-
visitContainer
public void visitContainer(PollableContainer container)
visitContainer
- Specified by:
visitContainer
in interfacePollableVisitor
- Parameters:
container
- aPollableContainer
object.
-
visitElement
public void visitElement(PollableElement element)
visitElement
- Specified by:
visitElement
in interfacePollableVisitor
- Parameters:
element
- aPollableElement
object.
-
-