1 23 24 30 package com.sun.enterprise.admin.monitor.callflow; 31 32 35 public class AgentAdapter implements Agent { 36 37 public void requestStart(RequestType requestType) {} 38 public void addRequestInfo(RequestInfo requestInfo, String value) {} 39 public void requestEnd() {} 40 public void startTime(ContainerTypeOrApplicationType type) {} 41 public void endTime() {} 42 43 public void ejbMethodStart(CallFlowInfo info) {} 44 public void ejbMethodEnd(CallFlowInfo info) {} 45 46 public void webMethodStart( 47 String methodName, String applicationName, String moduleName, 48 String componentName, ComponentType componentType, 49 String callerPrincipal) {} 50 public void webMethodEnd(Throwable exception) {} 51 52 public void registerListener(Listener listener) {} 53 public void unregisterListener(Listener listener) {} 54 55 public ThreadLocalData getThreadLocalData() { 56 return null; 57 } 58 59 public void setEnable(boolean enable) {} 60 61 public boolean isEnabled() {return false;} 62 63 public void setCallerIPFilter(String ipAddress) {} 64 65 public void setCallerPrincipalFilter(String callerPrincipal) {} 66 67 public String getCallerPrincipalFilter() { 68 return null; 69 } 70 71 public String getCallerIPFilter() { 72 return null; 73 } 74 75 public void clearData() {} 76 77 public boolean deleteRequestIds (String [] requestIds){ 78 return true; 79 } 80 81 public java.util.List <java.util.Map <String , String >> 82 getRequestInformation() { 83 return null; 84 } 85 86 public java.util.List <java.util.Map <String , String >> 87 getCallStackForRequest(String requestId) { 88 return null; 89 } 90 91 public java.util.Map <String , String > getPieInformation (String requestID) { 92 return null; 93 } 94 } 95 | Popular Tags |