9dbe7c0d482a8008e260b9aa3ac3491372ac46b7
[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   /**
32    * Java representation of collectd/src/plugin.h:plugin_dispatch_values
33    */
34   native public static int DispatchValues (ValueList vl);
35
36   /**
37    * Java representation of collectd/src/plugin.h:plugin_get_ds
38    */
39   native public static DataSet GetDS (String type);
40
41   /**
42    * Java representation of collectd/src/plugin.h:plugin_register_config
43    */
44   native public static int RegisterConfig (String name,
45       CollectdConfigInterface obj);
46
47   /**
48    * Java representation of collectd/src/plugin.h:plugin_register_init
49    */
50   native public static int RegisterInit (String name,
51       CollectdInitInterface obj);
52
53   /**
54    * Java representation of collectd/src/plugin.h:plugin_register_read
55    */
56   native public static int RegisterRead (String name,
57       CollectdReadInterface obj);
58
59   /**
60    * Java representation of collectd/src/plugin.h:plugin_register_write
61    */
62   native public static int RegisterWrite (String name,
63       CollectdWriteInterface obj);
64
65   /**
66    * Java representation of collectd/src/plugin.h:plugin_register_shutdown
67    */
68   native public static int RegisterShutdown (String name,
69       CollectdShutdownInterface obj);
70 } /* class CollectdAPI */
71
72 /* vim: set sw=2 sts=2 et fdm=marker : */