DBus API Style Guide
From freesmartphone.org
DBus API Style Guide
- Bus names are all lowercase with . separation, e.g. org.freesmartphone.odeviced
- Object names all lowercase with / separation, e.g. /org/freesmartphone/device/idlenotifier/0
- Method and Signal names are CamelCased, e.g. ListFoo, GetBar.
- Use Get/Set prefixes for accessors (GetServiceCenter, SetServiceCenter)
- Use verbs for operations (ListProviders, Unlock, SendAuthCode)
- Use similar terms for similar operations (ListProviders, ListCells)
- Keep the vocabulary as simple as possible, but as large as necessary