Package org.opends.server.protocols.jmx
Class Credential
- java.lang.Object
-
- org.opends.server.protocols.jmx.Credential
-
public class Credential extends Object
Represents a Ldap credential used for JMX connection authentication.In JMX Connection, one and only one instance of this class is expected to be found in each of the
publicCredentialsandprivateCredentialssets ofSubject. Those are the Jmx Client connection that will handle incoming requests.
-
-
Constructor Summary
Constructors Constructor Description Credential(ClientConnection clientConnection)Default Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ClientConnectiongetClientConnection()Returns the associated Client connection.
-
-
-
Constructor Detail
-
Credential
public Credential(ClientConnection clientConnection)
Default Constructor.- Parameters:
clientConnection- The representation of this credential is a Jmx Client connection that will handle incoming requests.
-
-
Method Detail
-
getClientConnection
public ClientConnection getClientConnection()
Returns the associated Client connection.- Returns:
- the associated ClientConnection object. Can be null
-
-