1 23 24 30 31 package com.sun.enterprise.admin.monitor.callflow; 32 33 public interface CallFlowInfo { 34 public String getApplicationName(); 35 public String getModuleName(); 36 public String getComponentName(); 37 public ComponentType getComponentType(); 38 public java.lang.reflect.Method getMethod(); 39 public String getTransactionId(); 40 public String getCallerPrincipal(); 41 public Throwable getException(); 42 } | Popular Tags |