package refactoring.struts.beans; import java.io.Serializable; public class ExceptionHandlingBean implements Serializable { private static final long serialVersionUID = -6279476417902730240L; private String type; // Class private String key; private String handler; // Class private String scope; private String path; public ExceptionHandlingBean() { } public ExceptionHandlingBean(String type, String key, String handler) { super(); this.type = type; this.key = key; this.handler = handler; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getKey() { return key; } public void setKey(String key) { this.key = key; } public String getHandler() { return handler; } public void setHandler(String handler) { this.handler = handler; } public String getScope() { return scope; } public void setScope(String scope) { this.scope = scope; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } }