Skip to content

Commit

Permalink
fix #1
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveYesland committed Aug 2, 2019
1 parent b9cfcc7 commit c068064
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions IPRotator.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def registerExtenderCallbacks(self, callbacks):
self.isEnabled = False

callbacks.registerHttpListener(self)
callbacks.registerExtensionStateListener(self)
callbacks.setExtensionName(EXT_NAME)
callbacks.addSuiteTab(self)

Expand Down Expand Up @@ -220,6 +221,11 @@ def processHttpMessage(self, toolFlag, messageIsRequest, messageInfo):
def getTabCaption(self):
return EXT_NAME

#Handle extension unloading
def extensionUnloaded(self):
self.deleteAPIGateway()
return

#Layout the UI
def getUiComponent(self):
self.panel = JPanel()
Expand Down

0 comments on commit c068064

Please sign in to comment.