1 23 package com.sun.appserv.management.ext.wsmgmt; 24 25 import com.sun.appserv.management.base.MapCapable; 26 27 32 public interface MessageTrace extends MapCapable 33 { 34 35 36 public final static String CLASS_NAME = 37 "com.sun.appserv.management.ext.wsmgmt.MessageTrace"; 38 39 45 public int getRequestSize(); 46 47 53 public int getResponseSize(); 54 55 60 public String getRequestContent(); 61 62 67 public String getResponseContent(); 68 69 74 public String getTransportType(); 75 76 82 public String getHTTPRequestHeaders(); 83 84 90 public String getHTTPResponseHeaders(); 91 92 97 public String getClientHost(); 98 99 104 public String getPrincipalName(); 105 106 112 public long getResponseTime(); 113 114 119 public String getFaultCode(); 120 121 126 public String getFaultString(); 127 128 133 public String getFaultActor(); 134 135 140 public String getMessageID(); 141 142 147 public String getApplicationID(); 148 149 154 public String getEndpointName(); 155 156 161 public long getTimestamp(); 162 163 170 public boolean isCallFlowEnabled(); 171 } 172 | Popular Tags |