1 23 24 29 30 package com.sun.enterprise.admin.monitor.callflow; 31 32 36 public class RequestEndTO implements TransferObject{ 37 38 41 public RequestEndTO() { 42 } 43 44 public String requestId; 45 46 public long timeStamp; 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 | Popular Tags |