(action ActionInterface)
| 388 | } |
| 389 | |
| 390 | func (this *WAF) AddAction(action ActionInterface) { |
| 391 | this.actionMap[action.ActionId()] = action |
| 392 | } |
| 393 | |
| 394 | func (this *WAF) FindAction(actionId int64) ActionInterface { |
| 395 | return this.actionMap[actionId] |