/*
* Copyright 2004 Sun Microsystems, Inc. All rights reserved.
* PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
*/
package com.sun.portal.monitoring.security;
import com.sun.portal.monitoring.utilities.PropertyHelper;
public class User extends Password {
public User(PropertyHelper propertyHelper) {
super(propertyHelper);
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public void clear() {
super.clear();
name = null;
}
private String name;
}
|