Interface LifetimePolicyVisitor
-
- All Known Implementing Classes:
LifetimePolicyVisitorAdapter
public interface LifetimePolicyVisitor
The LifetimePolicy visitor.- Version:
- AMQP Version v100. Generation Date: Wed Apr 18 14:09:32 CEST 2012
- Author:
- IIT Software GmbH, Bremen/Germany, (c) 2012, All Rights Reserved
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
visit(DeleteOnClose impl)
Visitor method for a DeleteOnClose type object.void
visit(DeleteOnNoLinks impl)
Visitor method for a DeleteOnNoLinks type object.void
visit(DeleteOnNoLinksOrMessages impl)
Visitor method for a DeleteOnNoLinksOrMessages type object.void
visit(DeleteOnNoMessages impl)
Visitor method for a DeleteOnNoMessages type object.
-
-
-
Method Detail
-
visit
void visit(DeleteOnClose impl)
Visitor method for a DeleteOnClose type object.- Parameters:
impl
- a DeleteOnClose type object
-
visit
void visit(DeleteOnNoLinks impl)
Visitor method for a DeleteOnNoLinks type object.- Parameters:
impl
- a DeleteOnNoLinks type object
-
visit
void visit(DeleteOnNoMessages impl)
Visitor method for a DeleteOnNoMessages type object.- Parameters:
impl
- a DeleteOnNoMessages type object
-
visit
void visit(DeleteOnNoLinksOrMessages impl)
Visitor method for a DeleteOnNoLinksOrMessages type object.- Parameters:
impl
- a DeleteOnNoLinksOrMessages type object
-
-