/** Invoked when the conference should be put on hold. */
 @Override
 public void onHold() {
   final TelephonyConnection connection = getFirstConnection();
   if (connection != null) {
     connection.performHold();
   }
 }