01: /*
02: * Copyright 2005-2007 the original author or authors.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package net.sf.dozer.util.mapping.jmx;
17:
18: import java.util.Set;
19:
20: import net.sf.dozer.util.mapping.stats.StatisticsIF;
21:
22: /**
23: * Public Dozer JMX Bean interface
24: *
25: * @author tierney.matt
26: */
27: public interface DozerStatisticsControllerMBean extends StatisticsIF {
28: public double getMappingAverageTime();
29:
30: public long getMappingSuccessCount();
31:
32: public long getMappingFailureCount();
33:
34: public Set getMappingFailureExceptionTypes();
35:
36: public Set getMappingFailureTypes();
37:
38: public long getMappingOverallTime();
39:
40: public Set getCacheHitCount();
41:
42: public Set getCacheMissCount();
43:
44: public long getMapperInstancesCount();
45:
46: public long getFieldMappingSuccessCount();
47:
48: public long getFieldMappingFailureCount();
49:
50: public long getFieldMappingFailureIgnoredCount();
51:
52: public long getCustomConverterOverallTime();
53:
54: public long getCustomConverterSuccessCount();
55:
56: public double getCustomConverterPercentageOfMappingTime();
57:
58: public double getCustomConverterAverageTime();
59:
60: public String dumpStatistics();
61:
62: public void logStatistics();
63: }
|