#
# $Id: PartnerInfo.py,v 1.1 2001/10/14 03:07:47 hchen19 Exp $
#
#
# $Log: PartnerInfo.py,v $
# Revision 1.1  2001/10/14 03:07:47  hchen19
# Implements UML Design1
#
#

class PartnerInfo:
    def __init__(self, host, port):
        self.HOST=host
        self.PORT=port

    def getHost(self):
        return self.HOST

    def getPort(self):
        return self.PORT
    
