1 22 package org.jboss.metadata.web; 23 24 import org.jboss.logging.Logger; 25 26 33 public class ErrorPage 34 { 35 private static final Logger log = Logger.getLogger(ErrorPage.class); 36 37 protected String errorCode; 38 protected String location; 39 40 public String getErrorCode() 41 { 42 return errorCode; 43 } 44 45 public void setErrorCode(String errorCode) 46 { 47 this.errorCode = errorCode; 48 } 49 50 public String getLocation() 51 { 52 return location; 53 } 54 55 public void setLocation(String location) 56 { 57 this.location = location; 58 } 59 60 public String toString() 61 { 62 StringBuffer sb = new StringBuffer (100); 63 return sb.toString(); 64 } 65 } 66 | Popular Tags |