java plugin: Change the name of all functions to conform to the Java convention.
[collectd.git] / bindings / java / org / collectd / api / CollectdAPI.java
1 /*
2  * collectd/java - org/collectd/api/CollectdAPI.java
3  * Copyright (C) 2009  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  */
21
22 package org.collectd.api;
23
24 /**
25  * Java API to internal functions of collectd.
26  *
27  * @author Florian Forster &lt;octo at verplant.org&gt;
28  */
29 public class CollectdAPI
30 {
31   private static final int LOG_ERR     = 3;
32   private static final int LOG_WARNING = 4;
33   private static final int LOG_NOTICE  = 5;
34   private static final int LOG_INFO    = 6;
35   private static final int LOG_DEBUG   = 7;
36
37   /**
38    * Java representation of collectd/src/plugin.h:plugin_register_config
39    */
40   native public static int registerConfig (String name,
41       CollectdConfigInterface object);
42
43   /**
44    * Java representation of collectd/src/plugin.h:plugin_register_init
45    */
46   native public static int registerInit (String name,
47       CollectdInitInterface object);
48
49   /**
50    * Java representation of collectd/src/plugin.h:plugin_register_read
51    */
52   native public static int registerRead (String name,
53       CollectdReadInterface object);
54
55   /**
56    * Java representation of collectd/src/plugin.h:plugin_register_write
57    */
58   native public static int registerWrite (String name,
59       CollectdWriteInterface object);
60
61   /**
62    * Java representation of collectd/src/plugin.h:plugin_register_shutdown
63    */
64   native public static int registerShutdown (String name,
65       CollectdShutdownInterface object);
66
67   /**
68    * Java representation of collectd/src/plugin.h:plugin_dispatch_values
69    */
70   native public static int dispatchValues (ValueList vl);
71
72   /**
73    * Java representation of collectd/src/plugin.h:plugin_get_ds
74    */
75   native public static DataSet getDS (String type);
76
77   /**
78    * Java representation of collectd/src/plugin.h:plugin_log
79    */
80   native private static void log (int severity, String message);
81
82   public static void logError (String message)
83   {
84     log (LOG_ERR, message);
85   } /* void logError */
86
87   public static void logWarning (String message)
88   {
89     log (LOG_WARNING, message);
90   } /* void logWarning */
91
92   public static void logNotice (String message)
93   {
94     log (LOG_NOTICE, message);
95   } /* void logNotice */
96
97   public static void logInfo (String message)
98   {
99     log (LOG_INFO, message);
100   } /* void logInfo */
101
102   public static void logDebug (String message)
103   {
104     log (LOG_DEBUG, message);
105   } /* void logDebug */
106
107 } /* class CollectdAPI */
108
109 /* vim: set sw=2 sts=2 et fdm=marker : */