1 23 24 29 30 package com.sun.enterprise.admin.monitor.callflow; 31 32 36 public class MethodEndTO implements TransferObject{ 37 38 39 public MethodEndTO() { 40 } 41 42 public String requestId; 43 44 public long timeStamp; 45 46 public String exception; 47 48 String getRequestId() { 49 return requestId; 50 } 51 52 void setRequestId(String requestId) { 53 this.requestId = requestId; 54 } 55 56 long getTimeStamp() { 57 return timeStamp; 58 } 59 60 void setTimeStamp(long timeStamp) { 61 this.timeStamp = timeStamp; 62 } 63 64 String getException() { 65 return exception; 66 } 67 68 void setException(String exception) { 69 this.exception = exception; 70 } 71 } 72 | Popular Tags |