| | |
| | | private ManagementContext context; |
| | | |
| | | /** The connection parameters command builder. */ |
| | | private CommandBuilder contextCommandBuilder; |
| | | |
| | | private final CommandBuilder contextCommandBuilder; |
| | | /** The connection factory provider. */ |
| | | private final ConnectionFactoryProvider provider; |
| | | |
| | | /** The connection factory. */ |
| | | private final ConnectionFactory factory; |
| | | |
| | |
| | | public LDAPManagementContextFactory(ConnectionFactoryProvider cfp) throws ArgumentException { |
| | | this.provider = cfp; |
| | | factory = cfp.getAuthenticatedConnectionFactory(); |
| | | contextCommandBuilder = null; |
| | | } |
| | | |
| | | /** Closes this management context. */ |