Create an instance of TokenStore and return it. @return an instance of TokenStore and return it.
()
| 48 | * @return an instance of TokenStore and return it. |
| 49 | */ |
| 50 | public static TokenStore inst() |
| 51 | { |
| 52 | if (inst == null) |
| 53 | { |
| 54 | inst = new TokenStore(); |
| 55 | } |
| 56 | return inst; |
| 57 | } |
| 58 | |
| 59 | public static void reset() |
| 60 | { |
no outgoing calls