move cisco ssms

This commit is contained in:
garnier-quentin 2020-07-21 17:48:32 +02:00
parent e08ab80f3e
commit adda9e9911
4 changed files with 7 additions and 7 deletions

View File

@ -18,7 +18,7 @@
# limitations under the License. # limitations under the License.
# #
package network::cisco::ssms::restapi::custom::api; package apps::cisco::ssms::restapi::custom::api;
use strict; use strict;
use warnings; use warnings;

View File

@ -18,7 +18,7 @@
# limitations under the License. # limitations under the License.
# #
package network::cisco::ssms::restapi::mode::alerts; package apps::cisco::ssms::restapi::mode::alerts;
use base qw(centreon::plugins::templates::counter); use base qw(centreon::plugins::templates::counter);

View File

@ -18,7 +18,7 @@
# limitations under the License. # limitations under the License.
# #
package network::cisco::ssms::restapi::mode::licenses; package apps::cisco::ssms::restapi::mode::licenses;
use base qw(centreon::plugins::templates::counter); use base qw(centreon::plugins::templates::counter);

View File

@ -18,7 +18,7 @@
# limitations under the License. # limitations under the License.
# #
package network::cisco::ssms::restapi::plugin; package apps::cisco::ssms::restapi::plugin;
use strict; use strict;
use warnings; use warnings;
@ -31,11 +31,11 @@ sub new {
$self->{version} = '0.1'; $self->{version} = '0.1';
$self->{modes} = { $self->{modes} = {
'alerts' => 'network::cisco::ssms::restapi::mode::alerts', 'alerts' => 'apps::cisco::ssms::restapi::mode::alerts',
'licenses' => 'network::cisco::ssms::restapi::mode::licenses' 'licenses' => 'apps::cisco::ssms::restapi::mode::licenses'
}; };
$self->{custom_modes}->{api} = 'network::cisco::ssms::restapi::custom::api'; $self->{custom_modes}->{api} = 'apps::cisco::ssms::restapi::custom::api';
return $self; return $self;
} }