01: // PasswordAttribute.java
02: // $Id: PasswordAttribute.java,v 1.8 2002/06/09 11:25:47 ylafon Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1996.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.jigsaw.auth;
07:
08: import org.w3c.tools.resources.Attribute;
09: import org.w3c.tools.resources.StringAttribute;
10:
11: public class PasswordAttribute extends StringAttribute {
12:
13: public PasswordAttribute(String name, String password, int flags) {
14: super (name, password, flags);
15: this .type = "java.lang.String".intern();
16: }
17:
18: public PasswordAttribute() {
19: super();
20: }
21:
22: }
|