commit 42f727cc13dcbe38e0e74aa04c37240ee998a77f
Author: Bart Feenstra <bart@mynameisbart.com>
Date:   Thu Jun 12 12:54:49 2014 +0200

    foo

diff --git a/payment/lib/Drupal/payment/Plugin/Payment/Status/Authorized.php b/payment/lib/Drupal/payment/Plugin/Payment/Status/Authorized.php
new file mode 100644
index 0000000..0771884
--- /dev/null
+++ b/payment/lib/Drupal/payment/Plugin/Payment/Status/Authorized.php
@@ -0,0 +1,20 @@
+<?php
+
+/**
+ * Contains \Drupal\payment\Plugin\Payment\Status\Authorized.
+ */
+
+namespace Drupal\payment\Plugin\Payment\Status;
+
+/**
+ * An authorized payment.
+ *
+ * @PaymentStatus(
+ *   description = @Translation("The payment has been authorized by the payer, and the funds are waiting to be transferred."),
+ *   id = "payment_authorized",
+ *   label = @Translation("Authorized"),
+ *   parent_id = "payment_no_money_transferred"
+ * )
+ */
+class Authorized extends PaymentStatusBase {
+}
