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

Part Number E27170-02

weblogic.management.security.credentials
Interface UserPasswordCredentialMapReaderMBean

All Superinterfaces:
DescriptorBean, ListerMBean, SettableBean, StandardInterface
All Known Subinterfaces:
DefaultCredentialMapperMBean, UserPasswordCredentialMapEditorMBean, UserPasswordCredentialMapExtendedReaderMBean

public interface UserPasswordCredentialMapReaderMBean
extends ListerMBean

Provides a set of methods for reading credentials and credential mappings. Credential mappings match WebLogic users to remote usernames and passwords. A Credential Mapping-provider MBean can optionally extend this MBean. The WebLogic Server Administration Console detects when a Credential Mapping provider extends this MBean and automatically provides a GUI for using these methods.


Method Summary
 String getCurrentCredentialRemotePassword(String cursor)
          Deprecated. 9.0.0.0
 String getCurrentCredentialRemoteUserName(String cursor)
          Gets a remote username from a list that has been returned from the listCredentials method.
 String getCurrentMappingRemoteUserName(String cursor)
          Gets an remote username from a credentials mapping that has been returned from the listMappings method.
 String getCurrentMappingWLSUserName(String cursor)
          Gets a webLogic username from a credentials mapping that has been returned from the listMappings method.
 String getRemotePassword(String resourceId, String remoteUserName)
          Deprecated. 9.0.0.0
 String getRemoteUserName(String resourceId, String wlsUserName)
          Gets the external username that is mapped to a local webLogic username for the specified resource.
 String listCredentials(String resourceId)
          Gets a list of credentials mapped to the resource.
 String listMappings(String resourceId)
          Gets a list of credential mappings created for the given resource id.
 
Methods inherited from interface weblogic.management.utils.ListerMBean
advance, close, haveCurrent
 
Methods inherited from interface weblogic.management.commo.StandardInterface
getName
 
Methods inherited from interface weblogic.descriptor.DescriptorBean
addPropertyChangeListener, createChildCopyIncludingObsolete, getParentBean, isEditable, removePropertyChangeListener
 
Methods inherited from interface weblogic.descriptor.SettableBean
isSet, unSet
 

Method Detail

getRemoteUserName

String getRemoteUserName(String resourceId,
                         String wlsUserName)
                         throws NotFoundException
Gets the external username that is mapped to a local webLogic username for the specified resource.

Parameters:
resourceId - - The resource on which the mapping between the local weblogic user and the remote user was created.
wlsUserName - - The local weblogic username.
Returns:
the remote username.
Throws:
NotFoundException

getRemotePassword

String getRemotePassword(String resourceId,
                         String remoteUserName)
                         throws NotFoundException
Deprecated. 9.0.0.0

Gets the remote password corresponding to the remote username in the credential created for the specified resource. Deprecated in WLS 9.0

Parameters:
resourceId - - The resource for which the credential was created.
remoteUserName - - The external username.
Returns:
the external password.
Throws:
NotFoundException

listCredentials

String listCredentials(String resourceId)
Gets a list of credentials mapped to the resource. Returns a cursor as a string. Use the getCurrentCredentialRemoteUserName and getCurrentCredentialRemotePassword methods to get the username and password for the current item in the list.

Parameters:
resourceId - - The resource for which the credentials are to be returned.
Returns:
a string which is a cursor used to get each credential.

getCurrentCredentialRemoteUserName

String getCurrentCredentialRemoteUserName(String cursor)
                                          throws InvalidCursorException
Gets a remote username from a list that has been returned from the listCredentials method. This method returns the remote username that corresponds to current location in the list.

Parameters:
cursor - - The cursor that has been returned from the listCredentials method.
Returns:
a string which is the current remote user name.
Throws:
InvalidCursorException

getCurrentCredentialRemotePassword

String getCurrentCredentialRemotePassword(String cursor)
                                          throws InvalidCursorException
Deprecated. 9.0.0.0

Gets a password from a list that has been returned from the listCredentials method. This method returns the password that corresponds to current location in the list. Deprecated in WLS 9.0

Parameters:
cursor - - The cursor that has been returned from the listCredentials method.
Returns:
a string which is the current remote user password.
Throws:
InvalidCursorException

listMappings

String listMappings(String resourceId)
Gets a list of credential mappings created for the given resource id. Returns a cursor as a string. Use the getCurrentMappingWLSUserName and getCurrentMappingRemoteUserName methods to return the webLogic username and remote user name for the current item in the list.

Parameters:
resourceId - - The resource for which the credential mappings are to be returned.
Returns:
a string which is a cursor used to get each credential mapping.

getCurrentMappingWLSUserName

String getCurrentMappingWLSUserName(String cursor)
                                    throws InvalidCursorException
Gets a webLogic username from a credentials mapping that has been returned from the listMappings method. This method returns the local webLogic username that corresponds to current location in the list.

Parameters:
cursor - - The cursor that has been returned from the listMappings method.
Returns:
a string which is local weblogic username.
Throws:
InvalidCursorException

getCurrentMappingRemoteUserName

String getCurrentMappingRemoteUserName(String cursor)
                                       throws InvalidCursorException
Gets an remote username from a credentials mapping that has been returned from the listMappings method. This method returns the remote username that corresponds to current location in the list.

Parameters:
cursor - - The cursor that has been returned from the listMappings method.
Returns:
a string which is remote username.
Throws:
InvalidCursorException

Copyright 1996, 2013, 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.1.2)

Part Number E27170-02