]> WPIA git - gigi.git/commitdiff
Name Cleanup in SimpleSigner
authorFelix Dörre <felix@dogcraft.de>
Wed, 9 Jul 2014 18:24:11 +0000 (20:24 +0200)
committerFelix Dörre <felix@dogcraft.de>
Thu, 10 Jul 2014 22:35:13 +0000 (00:35 +0200)
util/org/cacert/gigi/util/SimpleSigner.java

index 7bee775a3c23b9428a8a613de716f1b54e6449e0..9d5e9d29cb0abe093c4ae0578c417da985f93725 100644 (file)
@@ -46,13 +46,13 @@ public class SimpleSigner {
                gencrl();
                while (true) {
                        System.out.println("ping");
-                       executeOutstanders();
-                       revokeOutstanders();
+                       signCertificates();
+                       revokeCertificates();
                        Thread.sleep(5000);
                }
        }
 
-       private static void revokeOutstanders() throws SQLException, IOException,
+       private static void revokeCertificates() throws SQLException, IOException,
                        InterruptedException {
                ResultSet rs = revoke.executeQuery();
                boolean worked = false;
@@ -98,7 +98,7 @@ public class SimpleSigner {
                        System.out.println("Error while generating crl.");
                }
        }
-       private static void executeOutstanders() throws SQLException, IOException,
+       private static void signCertificates() throws SQLException, IOException,
                        InterruptedException {
                ResultSet rs = readyMail.executeQuery();
                while (rs.next()) {