Opened 9 years ago
Closed 8 years ago
#890 closed enhancement (fixed)
Remove calls to methods deprecated in BASE 3.9
Reported by: | Nicklas Nordborg | Owned by: | Nicklas Nordborg |
---|---|---|---|
Priority: | major | Milestone: | Reggie v4.5 |
Component: | net.sf.basedb.reggie | Keywords: | |
Cc: |
Description (last modified by )
See http://base.thep.lu.se/ticket/2011
Reggie is full of calls to the deprecated 2-argument version of Application.getSessionControl()
. I think we should:
- Re-factor the code so that the call is made in via a utility function.
- Use a separate client id for Reggie.
- Call the 4-argument version of
Application.getSessionControl()
which also checks that a user is logged in. This is currently not done and may in some cases result in an exception later on and in some cases result in an empty data structure being returned. Better to throw aNotLoggedInException
immediately.
Change History (7)
comment:1 by , 9 years ago
Description: | modified (diff) |
---|
comment:2 by , 9 years ago
comment:3 by , 9 years ago
comment:4 by , 9 years ago
comment:5 by , 9 years ago
comment:6 by , 9 years ago
comment:7 by , 8 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [3973]) References #890: Remove calls to methods deprecated in BASE 3.9
Added utility method for getting a session control.