1 23 24 29 30 package com.sun.enterprise.admin.monitor.callflow; 31 32 36 public class MethodStartTO implements TransferObject{ 37 38 39 public MethodStartTO() { 40 } 41 42 public String requestId; 43 44 public long timeStamp; 45 46 public ComponentType componentType; 47 48 public String componentName; 49 50 public String appName; 51 52 public String methodName; 53 54 public String moduleName; 55 56 public String threadId; 57 58 public String transactionId; 59 60 public String securityId; 61 62 String getRequestId() { 63 return requestId; 64 } 65 66 void setRequestId(String requestId) { 67 this.requestId = requestId; 68 } 69 70 long getTimeStamp() { 71 return timeStamp; 72 } 73 74 void setTimeStamp(long timeStamp) { 75 this.timeStamp = timeStamp; 76 } 77 78 ComponentType getComponentType() { 79 return componentType; 80 } 81 82 void setComponentType(ComponentType componentType) { 83 this.componentType = componentType; 84 } 85 86 String getComponentName() { 87 return componentName; 88 } 89 90 void setComponentName(String componentName) { 91 this.componentName = componentName; 92 } 93 94 String getAppName() { 95 return appName; 96 } 97 98 void setAppName(String appName) { 99 this.appName = appName; 100 } 101 102 String getMethodName() { 103 return methodName; 104 } 105 106 void setMethodName(String methodName) { 107 this.methodName = methodName; 108 } 109 110 String getModuleName() { 111 return moduleName; 112 } 113 114 void setModuleName(String moduleName) { 115 this.moduleName = moduleName; 116 } 117 118 String getThreadId() { 119 return threadId; 120 } 121 122 void setThreadId(String threadId) { 123 this.threadId = threadId; 124 } 125 126 String getTransactionId() { 127 return transactionId; 128 } 129 130 void setTransactionId(String transactionId) { 131 this.transactionId = transactionId; 132 } 133 134 String getSecurityId() { 135 return securityId; 136 } 137 138 void setSecurityId(String securityId) { 139 this.securityId = securityId; 140 } 141 } 142 | Popular Tags |