1 23 24 29 30 package com.sun.enterprise.admin.monitor.callflow; 31 32 36 public class StartTimeTO implements TransferObject{ 37 38 39 public StartTimeTO() { 40 } 41 42 public String requestId; 43 44 public long timeStamp; 45 46 public String containerTypeOrApplicationType; 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 getContainerTypeOrApplicationType() { 65 return containerTypeOrApplicationType; 66 } 67 68 void setContainerTypeOrApplicationType( 69 ContainerTypeOrApplicationType type) { 70 this.containerTypeOrApplicationType = type.toString(); 71 } 72 } 73 | Popular Tags |