Rev 3896 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
'''Created on 25-Oct-2011@author: Chandranshu'''import logginglogging.basicConfig(level=logging.DEBUG)class ContentHandler:'''classdocs'''def __init__(self):passdef pushContentToProduction(self, entityId):"""Parameters:- entityId"""passdef close_session(self):passdef isAlive(self, ):"""For checking weather service is active alive or not. It also checks connectivity with database"""try:return Trueexcept:return Falsefinally:self.close_session()