ApacheDS Server JNDI.
The JNDI provider which launches the core and associated network services: Changepw, Kerberos, LDAP, and NTP if all are configured. By default only LDAP is configured to startup..
Here is the list of declaration for apacheds-server-jndi. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.directory.server</groupId> <artifactId>apacheds-server-jndi</artifactId> <version>1.0.2</version> </dependency>
If you think this Maven repository POM file listing for apacheds-server-jndi is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following packages are defined in the apacheds-server-jndi-1.0.2.jar
org.apache.directory.server.configuration org.apache.directory.server.jndi
Here is the content of the POM file.
<?xml version="1.0" encoding="ISO-8859-1"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.directory.server</groupId> <artifactId>build</artifactId> <version>1.0.2</version> </parent> <artifactId>apacheds-server-jndi</artifactId> <name>ApacheDS Server JNDI</name> <description> The JNDI provider which launches the core and associated network services: Changepw, Kerberos, LDAP, and NTP if all are configured. By default only LDAP is configured to startup. </description> <packaging>jar</packaging> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>nlog4j</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.directory.server</groupId> <artifactId>apacheds-protocol-changepw</artifactId> <version>${pom.version}</version> </dependency> <dependency> <groupId>org.apache.directory.server</groupId> <artifactId>apacheds-protocol-ntp</artifactId> <version>${pom.version}</version> </dependency> <dependency> <groupId>org.apache.directory.server</groupId> <artifactId>apacheds-protocol-kerberos</artifactId> <version>${pom.version}</version> </dependency> <dependency> <groupId>org.apache.directory.server</groupId> <artifactId>apacheds-protocol-ldap</artifactId> <version>${pom.version}</version> </dependency> <dependency> <groupId>org.apache.directory.server</groupId> <artifactId>apacheds-core</artifactId> <version>${pom.version}</version> </dependency> </dependencies> </project>