01: /**
02: * $Id: CommonAlertBean.java,v 1.1 2005/06/25 05:34:15 hc109819 Exp $
03: * Copyright 2005 Sun Microsystems, Inc. All
04: * rights reserved. Use of this product is subject
05: * to license terms. Federal Acquisitions:
06: * Commercial Software -- Government Users
07: * Subject to Standard License Terms and
08: * Conditions.
09: *
10: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
11: * are trademarks or registered trademarks of Sun Microsystems,
12: * Inc. in the United States and other countries.
13: */package com.sun.portal.admin.console.common;
14:
15: public class CommonAlertBean {
16:
17: private Boolean displayError = Boolean.FALSE;
18: private String alertSummary = "common.alert.summary";
19: private String alertDetail = "common.alert.detail";
20: private String alertType = "common.alert.type";
21:
22: /** Creates a new instance of CommonAlertBean */
23: public CommonAlertBean() {
24: }
25:
26: public Boolean getDisplayError() {
27: return displayError;
28: }
29:
30: public void setDisplayError(Boolean value) {
31: this .displayError = value;
32: }
33:
34: public String getAlertSummary() {
35: return alertSummary;
36: }
37:
38: public void setAlertSummary(String summary) {
39: this .alertSummary = summary;
40: }
41:
42: public String getAlertDetail() {
43: return alertDetail;
44: }
45:
46: public void setAlertDetail(String detail) {
47: this .alertDetail = detail;
48: }
49:
50: public String getAlertType() {
51: return alertType;
52: }
53:
54: public void setAlertType(String type) {
55: this.alertType = type;
56: }
57: }
|