Umesh Krishnaswamy | 345ee99 | 2012-12-13 20:29:48 -0800 | [diff] [blame] | 1 | package net.floodlightcontroller.flowcache; |
| 2 | |
| 3 | import net.floodlightcontroller.flowcache.IFlowCacheService.FCQueryEvType; |
| 4 | |
| 5 | /** |
| 6 | * The Class PendingSwitchResp. This object is used to track the pending |
| 7 | * responses to switch flow table queries. |
| 8 | */ |
| 9 | public class PendingSwitchResp { |
| 10 | protected FCQueryEvType evType; |
| 11 | |
| 12 | public PendingSwitchResp( |
| 13 | FCQueryEvType evType) { |
| 14 | this.evType = evType; |
| 15 | } |
| 16 | |
| 17 | public FCQueryEvType getEvType() { |
| 18 | return evType; |
| 19 | } |
| 20 | |
| 21 | public void setEvType(FCQueryEvType evType) { |
| 22 | this.evType = evType; |
| 23 | } |
| 24 | } |