package com.jsonde.client.domain; public class MethodCallSummary extends AbstractMethodCall { public Long executionTime; public Long throwExceptionCounter; public Long invocationCount; public Long getExecutionTime() { return executionTime; } public void setExecutionTime(Long executionTime) { this.executionTime = executionTime; } public Long getThrowExceptionCounter() { return throwExceptionCounter; } public void setThrowExceptionCounter(Long throwExceptionCounter) { this.throwExceptionCounter = throwExceptionCounter; } public Long getInvocationCount() { return invocationCount; } public void setInvocationCount(Long invocationCount) { this.invocationCount = invocationCount; } @Override public String toString() { return "MethodCallSummary{" + "executionTime=" + executionTime + ", throwExceptionCounter=" + throwExceptionCounter + ", invocationCount=" + invocationCount + "} " + super.toString(); } }