Brad Bishop | 8ffe1e4 | 2016-02-11 16:15:40 -0500 | [diff] [blame] | 1 | # 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 | |
| 17 | import dbus |
| 18 | |
| 19 | DBUS_OBJMGR_IFACE = dbus.BUS_DAEMON_IFACE + '.ObjectManager' |
| 20 | DBUS_UNKNOWN_INTERFACE = 'org.freedesktop.UnknownInterface' |
Brad Bishop | 0b88507 | 2016-05-09 14:53:36 -0400 | [diff] [blame] | 21 | DBUS_UNKNOWN_SERVICE = 'org.freedesktop.DBus.Error.ServiceUnknown' |
Brad Bishop | 8ffe1e4 | 2016-02-11 16:15:40 -0500 | [diff] [blame] | 22 | DBUS_UNKNOWN_PROPERTY = 'org.freedesktop.DBus.Error.UnknownProperty' |
| 23 | DBUS_UNKNOWN_METHOD = 'org.freedesktop.DBus.Error.UnknownMethod' |
| 24 | DBUS_INVALID_ARGS = 'org.freedesktop.DBus.Error.InvalidArgs' |
Brad Bishop | a5d2a11 | 2016-06-28 16:23:31 -0400 | [diff] [blame] | 25 | DBUS_NO_REPLY = 'org.freedesktop.DBus.Error.NoReply' |
Brad Bishop | 8ffe1e4 | 2016-02-11 16:15:40 -0500 | [diff] [blame] | 26 | DBUS_TYPE_ERROR = 'org.freedesktop.DBus.Python.TypeError' |
| 27 | OBMC_ASSOCIATIONS_IFACE = 'org.openbmc.Associations' |
| 28 | OBMC_ASSOC_IFACE = 'org.openbmc.Association' |
| 29 | OBMC_DELETE_IFACE = 'org.openbmc.Object.Delete' |
| 30 | OBMC_PROPERTIES_IFACE = "org.openbmc.Object.Properties" |
| 31 | OBMC_ENUMERATE_IFACE = "org.openbmc.Object.Enumerate" |