01: /**
02: * $Id: LoginAlertBean.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 LoginAlertBean extends CommonAlertBean {
16:
17: private Boolean displaySpacer = Boolean.FALSE;
18:
19: /** Creates a new instance of LoginAlertBean */
20: public LoginAlertBean() {
21: }
22:
23: public Boolean getDisplaySpacer() {
24: return this .displaySpacer;
25: }
26:
27: public void setDisplaySpacer(Boolean value) {
28: this.displaySpacer = value;
29: }
30: }
|