Fix : get back LiveStatus as default.
[shinken.git] / shinken / objects / __init__.py
blobf9bd4b2f9ab9cfc02691c3d37c207f563d031140
1 #!/usr/bin/python
2 #Copyright (C) 2009 Gabes Jean, naparuba@gmail.com
4 #This file is part of Shinken.
6 #Shinken is free software: you can redistribute it and/or modify
7 #it under the terms of the GNU Affero General Public License as published by
8 #the Free Software Foundation, either version 3 of the License, or
9 #(at your option) any later version.
11 #Shinken is distributed in the hope that it will be useful,
12 #but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 #GNU Affero General Public License for more details.
16 #You should have received a copy of the GNU Affero General Public License
17 #along with Shinken. If not, see <http://www.gnu.org/licenses/>.
21 """ The objects package contains definition classes of the different objects that can be declared in configuration files. """
23 from item import Item, Items
24 from timeperiod import Timeperiod, Timeperiods
25 from schedulingitem import SchedulingItem
26 from service import Service, Services
27 from command import Command, Commands, CommandCall
28 from resultmodulation import Resultmodulation, Resultmodulations
29 from escalation import Escalation, Escalations
30 from serviceescalation import Serviceescalation, Serviceescalations
31 from hostescalation import Hostescalation, Hostescalations
32 from host import Host, Hosts
33 from hostgroup import Hostgroup, Hostgroups
34 from realm import Realm, Realms
35 from contact import Contact, Contacts
36 from contactgroup import Contactgroup, Contactgroups
37 from notificationway import NotificationWay, NotificationWays
38 from servicegroup import Servicegroup, Servicegroups
39 from servicedependency import Servicedependency, Servicedependencies
40 from hostdependency import Hostdependency, Hostdependencies
41 from module import Module, Modules
43 from config import Config