BEA Systems, Inc.

BEA WebLogic Server 9.0 API Reference


weblogic.xml.security
Class UserInfo

java.lang.Object
  extended byweblogic.xml.security.UserInfo

Deprecated. please use new WS Security API

public class UserInfo
extends Object

UserInfo is used to return user information from Security elements in of Secure SOAP elements. These typically include a username and some authenticating information, either a plain text password or a password digest. In the case of password digests, the UserInfo object will also allow you to verify the digest.

Copyright © 2005 BEA Systems, Inc. All Rights Reserved.

Constructor Summary
UserInfo(String username)
          Deprecated. Creates a UserInfo with the username provide.d
UserInfo(String username, byte[] digest, String nonce, String created)
          Deprecated. Creates a UserInfo with the username, password digest, and digest components.
UserInfo(String username, String password)
          Deprecated. Creates a UserInfo with the username and password provided.
 
Method Summary
 String getPassword()
          Deprecated. Returns the password string, if available.
 byte[] getPasswordDigest()
          Deprecated. returns the password digest, if availalble.
 String getUsername()
          Deprecated.  
 boolean verifyPassword(String password)
          Deprecated. Verifies this UserInfo's password matches the provided password.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UserInfo

public UserInfo(String username)
Deprecated. 
Creates a UserInfo with the username provide.d


UserInfo

public UserInfo(String username,
                byte[] digest,
                String nonce,
                String created)
Deprecated. 
Creates a UserInfo with the username, password digest, and digest components.


UserInfo

public UserInfo(String username,
                String password)
Deprecated. 
Creates a UserInfo with the username and password provided.

Method Detail

getPassword

public String getPassword()
Deprecated. 
Returns the password string, if available.

Returns:
the password as a String

getPasswordDigest

public byte[] getPasswordDigest()
Deprecated. 
returns the password digest, if availalble.

Returns:

getUsername

public String getUsername()
Deprecated. 

verifyPassword

public boolean verifyPassword(String password)
                       throws NoSuchAlgorithmException
Deprecated. 
Verifies this UserInfo's password matches the provided password. If only a password digest is available, it will compute the digests from the provided Password and verify the match.

Parameters:
password -
Returns:
Throws:
NoSuchAlgorithmException

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs90
Copyright 2005 BEA Systems Inc.