01: /*
02: * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.monitoring.security;
06:
07: import com.sun.portal.monitoring.utilities.PropertyHelper;
08:
09: public class User extends Password {
10: public User(PropertyHelper propertyHelper) {
11: super (propertyHelper);
12: }
13:
14: public String getName() {
15: return name;
16: }
17:
18: public void setName(String name) {
19: this .name = name;
20: }
21:
22: public void clear() {
23: super .clear();
24: name = null;
25: }
26:
27: private String name;
28: }
|