added actions console command

This commit is contained in:
Radu Ioan Fericean
2015-11-30 14:35:59 +02:00
parent add4d19ccc
commit b779c4685c

60
console/actions.go Normal file
View File

@@ -0,0 +1,60 @@
/*
Real-time Charging System for Telecom & ISP environments
Copyright (C) 2012-2015 ITsysCOM GmbH
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package console
import "github.com/cgrates/cgrates/utils"
func init() {
c := &CmdGetActions{
name: "actions",
rpcMethod: "ApierV2.GetActions",
rpcParams: "",
}
commands[c.Name()] = c
c.CommandExecuter = &CommandExecuter{c}
}
// Commander implementation
type CmdGetActions struct {
name string
rpcMethod string
rpcParams string
*CommandExecuter
}
func (self *CmdGetActions) Name() string {
return self.name
}
func (self *CmdGetActions) RpcMethod() string {
return self.rpcMethod
}
func (self *CmdGetActions) RpcParams(reset bool) interface{} {
return self.rpcParams
}
func (self *CmdGetActions) PostprocessRpcParams() error {
return nil
}
func (self *CmdGetActions) RpcResult() interface{} {
a := make([]*utils.TPAction, 0)
return &a
}