@return Returns the session.
()
| 128 | * @return Returns the session. |
| 129 | */ |
| 130 | public Session getSession() { |
| 131 | if (session == null) { |
| 132 | session = new Session(this); |
| 133 | } |
| 134 | return session; |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * This method should typically only be called from the Control class |
no outgoing calls