/**
  * Execute the "getCarFromPlateEmail" operation synchronously
  *
  * @return The result of this operation
  */
 public synchronized CarTypPrx getCarFromPlateEmail(String plate, String ownerEmail) {
   _queryController.destroy();
   DBProcedureController queryController;
   _queryController =
       queryController = new DBProcedureController(_handler, _session.getCardroidManager());
   return queryController.getCarFromPlateEmail(plate, ownerEmail);
 }
 /**
  * Execute the "getCarFromPlateEmail" operation asynchronously
  *
  * @param listener Implementation of the callback methods that will be called upon the completion
  *     of the operation
  * @return QueryController containing the context of this operation
  */
 public synchronized DBProcedureController getCarFromPlateEmail(
     QueryListener listener, String plate, String ownerEmail) {
   _queryController.destroy();
   DBProcedureController queryController;
   _queryController =
       queryController = new DBProcedureController(_handler, _session.getCardroidManager());
   queryController.getCarFromPlateEmail(listener, plate, ownerEmail);
   return queryController;
 }