コード例 #1
0
ファイル: noxml.py プロジェクト: tangi75/python2-petclinic
 def httpContextFilter(self):
     filter = HttpSessionContextIntegrationFilter()
     filter.sessionStrategy = self.cherrypySessionStrategy()
     return filter
コード例 #2
0
ファイル: app_context.py プロジェクト: ws-os/spring-python
 def httpSessionContextIntegrationFilter(self):
     """This filter is used to move SecurityContext to/from the HttpSession of the web requests."""
     filter = HttpSessionContextIntegrationFilter()
     filter.sessionStrategy = self.cherrypySessionStrategy()
     return filter
コード例 #3
0
ファイル: app_context.py プロジェクト: gregturn/twitter-clone
 def httpSessionContextIntegrationFilter(self):
     """This filter is used to move SecurityContext to/from the HttpSession of the web requests."""
     filter = HttpSessionContextIntegrationFilter()
     filter.sessionStrategy = self.cherrypySessionStrategy()
     return filter
コード例 #4
0
ファイル: noxml.py プロジェクト: ram-peri/spring-python
 def httpContextFilter(self):
     filter = HttpSessionContextIntegrationFilter()
     filter.sessionStrategy = self.cherrypySessionStrategy()
     return filter