move sfa.util.server into sfa.server.sfaserver
[sfa.git] / sfa / server / slicemgr.py
1 import os
2 import sys
3 import datetime
4 import time
5 from sfa.server.sfaserver import SfaServer
6
7 class SliceMgr(SfaServer):
8
9   
10     ##
11     # Create a new slice manager object.
12     #
13     # @param ip the ip address to listen on
14     # @param port the port to listen on
15     # @param key_file private key filename of registry
16     # @param cert_file certificate filename containing public key (could be a GID file)     
17
18     def __init__(self, ip, port, key_file, cert_file, config = "/etc/sfa/sfa_config"):
19         SfaServer.__init__(self, ip, port, key_file, cert_file,'slicemgr')