1 22 package org.jboss.mq.il.http; 23 24 import java.io.Serializable ; 25 32 public class HTTPILResponse implements Serializable  33 { 34 static final long serialVersionUID = -3142826625041742267L; 35 private Object value; 36 37 public HTTPILResponse() 38 { 39 } 40 41 public HTTPILResponse(Object value) 42 { 43 this.value = value; 44 } 45 46 public void setValue(Object value) 47 { 48 this.value = value; 49 } 50 51 public Object getValue() 52 { 53 return this.value; 54 } 55 56 public String toString() 57 { 58 if (this.value == null) 59 { 60 return null; 61 } 62 else 63 { 64 return this.value.toString(); 65 } 66 } 67 } | Popular Tags |