public Connection getConnection(ObjectId id) throws ConnectionNotFoundException {
Connection connection = connectionDAO.get(id);
if (connection == null) {
// TODO: Event handling
throw new ConnectionNotFoundException(id == null ? "null" : id.toString());
}
return connection;
}