SimpleAuthenticatedUserpublic class SimpleAuthenticatedUser extends Object implements org.apache.axis.security.AuthenticatedUserSimpleAuthenticatedUser is a trivial implementation of the
AuthenticatedUser interface, for use with a default Axis installation
and the SimpleSecurityProvider. |
Fields Summary |
---|
private String | name |
Constructors Summary |
---|
public SimpleAuthenticatedUser(String name)
this.name = name;
|
Methods Summary |
---|
public java.lang.String | getName()Return a string representation of the user's name.
return name;
|
|