FileDocCategorySizeDatePackage
SimpleAuthenticatedUser.javaAPI DocApache Axis 1.41304Sat Apr 22 18:57:28 BST 2006org.apache.axis.security.simple

SimpleAuthenticatedUser

public class SimpleAuthenticatedUser extends Object implements org.apache.axis.security.AuthenticatedUser
SimpleAuthenticatedUser is a trivial implementation of the AuthenticatedUser interface, for use with a default Axis installation and the SimpleSecurityProvider.
author
Glen Daniels (gdaniels@apache.org)

Fields Summary
private String
name
Constructors Summary
public SimpleAuthenticatedUser(String name)

        this.name = name;
    
Methods Summary
public java.lang.StringgetName()
Return a string representation of the user's name.

return
the user's name as a String.

        return name;