blob: 4ddec42baa500670db92c442e239eb9b5ea11c1f [file] [log] [blame]
Brad Bishop8ffe1e42016-02-11 16:15:40 -05001# Contributors Listed Below - COPYRIGHT 2016
2# [+] International Business Machines Corp.
3#
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14# implied. See the License for the specific language governing
15# permissions and limitations under the License.
16
17import dbus
18
19DBUS_OBJMGR_IFACE = dbus.BUS_DAEMON_IFACE + '.ObjectManager'
20DBUS_UNKNOWN_INTERFACE = 'org.freedesktop.UnknownInterface'
Brad Bishop0b885072016-05-09 14:53:36 -040021DBUS_UNKNOWN_SERVICE = 'org.freedesktop.DBus.Error.ServiceUnknown'
Brad Bishop8ffe1e42016-02-11 16:15:40 -050022DBUS_UNKNOWN_PROPERTY = 'org.freedesktop.DBus.Error.UnknownProperty'
23DBUS_UNKNOWN_METHOD = 'org.freedesktop.DBus.Error.UnknownMethod'
24DBUS_INVALID_ARGS = 'org.freedesktop.DBus.Error.InvalidArgs'
Brad Bishopa5d2a112016-06-28 16:23:31 -040025DBUS_NO_REPLY = 'org.freedesktop.DBus.Error.NoReply'
Brad Bishop8ffe1e42016-02-11 16:15:40 -050026DBUS_TYPE_ERROR = 'org.freedesktop.DBus.Python.TypeError'
27OBMC_ASSOCIATIONS_IFACE = 'org.openbmc.Associations'
28OBMC_ASSOC_IFACE = 'org.openbmc.Association'
29OBMC_DELETE_IFACE = 'org.openbmc.Object.Delete'
30OBMC_PROPERTIES_IFACE = "org.openbmc.Object.Properties"
31OBMC_ENUMERATE_IFACE = "org.openbmc.Object.Enumerate"