Merge branch 'collectd-4.6' into collectd-4.7
[collectd.git] / bindings / java / org / collectd / api / CollectdShutdownInterface.java
index f0ccba0..108c54e 100644 (file)
 
 package org.collectd.api;
 
+/**
+ * Interface for objects implementing a shutdown method.
+ *
+ * @author Florian Forster <octo at verplant.org>
+ * @see Collectd#registerShutdown
+ */
 public interface CollectdShutdownInterface
 {
-       public int Shutdown ();
+       public int shutdown ();
 }