Skip navigation links

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09


weblogic.xml.security
Class UserInfo

java.lang.Object
  extended by weblogic.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.


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

 

Method Detail

getUsername

public String getUsername()
Deprecated. 

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.

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 -
Throws:
NoSuchAlgorithmException

Skip navigation links

Copyright 1996, 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09