1 23 24 29 30 package com.sun.enterprise.admin.monitor.callflow; 31 import com.sun.enterprise.admin.monitor.callflow.RequestType; 32 33 37 public class RequestStartTO implements TransferObject{ 38 39 42 public RequestStartTO() { 43 } 44 45 public String requestId; 46 47 public long timeStamp; 48 49 public RequestType requestType; 50 51 public long timeStampMillis; 52 53 public String ipAddress; 54 55 String getRequestId() { 56 return requestId; 57 } 58 59 void setRequestId(String requestId) { 60 this.requestId = requestId; 61 } 62 63 long getTimeStamp() { 64 return timeStamp; 65 } 66 67 void setTimeStamp(long timeStamp) { 68 this.timeStamp = timeStamp; 69 } 70 71 RequestType getRequestType() { 72 return requestType; 73 } 74 75 void setRequestType(RequestType requestType) { 76 this.requestType = requestType; 77 } 78 79 long getTimeStampMillis (){ 80 return timeStampMillis; 81 } 82 83 void setTimeStampMillis (long timeStampMillis) { 84 this.timeStampMillis = timeStampMillis; 85 } 86 87 void setIpAddress (String ipAddress) { 88 this.ipAddress = ipAddress; 89 } 90 91 String getIpAddress () { 92 return this.ipAddress; 93 } 94 } 95 | Popular Tags |