1 37 38 39 40 41 42 package com.lutris.appserver.debugger.applet.io; 43 44 import java.io.Serializable ; 45 46 47 public class TransactionDescription implements Serializable { 48 49 public int id; 50 public String servletName; 51 public String remoteHost; 52 public String method; 53 public String requestURI; 54 public int responseCode; 55 56 57 public String toString() { 58 return servletName + " " + responseCode + " " + remoteHost + " " + 59 method + " " + requestURI; 60 } 61 62 } 63 | Popular Tags |