| Trees | Indices | Help |
|---|
|
|
1 #
2 # Copyright (c) 2008--2015 Red Hat, Inc.
3 #
4 # This software is licensed to you under the GNU General Public License,
5 # version 2 (GPLv2). There is NO WARRANTY for this software, express or
6 # implied, including the implied warranties of MERCHANTABILITY or FITNESS
7 # FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2
8 # along with this software; if not, see
9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
10 #
11 # Red Hat trademarks are not licensed under GPLv2. No permission is
12 # granted to use or replicate Red Hat trademarks that are incorporated
13 # in this software or its documentation.
14 #
15 #
16 # This file defines the classes available for the XMLRPC receiver
17 #
18
19 __all__ = []
20
21 import registration
22 import up2date
23 import queue
24 import errata
25 import proxy
26 import get_handler
27 import abrt
28 import scap
29
30 rpcClasses = {
31 "registration": registration.Registration,
32 "up2date": up2date.Up2date,
33 "queue": queue.Queue,
34 "errata": errata.Errata,
35 "proxy": proxy.Proxy,
36 "servers": up2date.Servers,
37 "abrt": abrt.Abrt,
38 "scap": scap.Scap,
39 }
40
41 getHandler = get_handler.GetHandler
42
| Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Wed Mar 4 07:37:47 2020 | http://epydoc.sourceforge.net |