| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.dozer.jmx; |
| 17 | |
|
| 18 | |
import java.util.Set; |
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
public interface DozerStatisticsControllerMBean { |
| 26 | |
public double getMappingAverageTimeInMillis(); |
| 27 | |
public long getMappingSuccessCount(); |
| 28 | |
public long getMappingFailureCount(); |
| 29 | |
public Set<String> getMappingFailureExceptionTypes(); |
| 30 | |
public Set<String> getMappingFailureTypes(); |
| 31 | |
public long getMappingOverallTimeInMillis(); |
| 32 | |
public Set<String> getCacheHitCount(); |
| 33 | |
public Set<String> getCacheMissCount(); |
| 34 | |
public long getMapperInstancesCount(); |
| 35 | |
public long getFieldMappingSuccessCount(); |
| 36 | |
public long getFieldMappingFailureCount(); |
| 37 | |
public long getFieldMappingFailureIgnoredCount(); |
| 38 | |
public long getCustomConverterOverallTimeInMillis(); |
| 39 | |
public long getCustomConverterSuccessCount(); |
| 40 | |
public double getCustomConverterPercentageOfMappingTime(); |
| 41 | |
public double getCustomConverterAverageTimeInMillis(); |
| 42 | |
public String dumpStatistics(); |
| 43 | |
public void clearAll(); |
| 44 | |
public boolean isStatisticsEnabled(); |
| 45 | |
public void setStatisticsEnabled(boolean statisticsEnabled); |
| 46 | |
public void logStatistics(); |
| 47 | |
} |