01: /*
02: * MCS Media Computer Software Copyright (c) 2007 by MCS
03: * -------------------------------------- Created on 10.01.2007 by W.Klaas
04: *
05: * Licensed under the Apache License, Version 2.0 (the "License"); you may not
06: * use this file except in compliance with the License. You may obtain a copy of
07: * the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14: * License for the specific language governing permissions and limitations under
15: * the License.
16: */
17: package de.mcs.jmeasurement.jmx;
18:
19: import java.util.Map;
20:
21: /**
22: * MXBean interface for the Points.
23: *
24: * @author W.Klaas
25: */
26: public interface JmxPointsMXBean {
27: /**
28: * Getting all measure points as map with key = name of the point (String)
29: * and the value is the proxy class JmxPoint for accessing the real
30: * MeasurePoint class.
31: *
32: * @return map
33: */
34: Map<String, JmxPoint> getPoints();
35: }
|