本文整理汇总了Java中org.apache.directory.server.core.annotations.CreateIndex类的典型用法代码示例。如果您正苦于以下问题:Java CreateIndex类的具体用法?Java CreateIndex怎么用?Java CreateIndex使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CreateIndex类属于org.apache.directory.server.core.annotations包,在下文中一共展示了CreateIndex类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: start
import org.apache.directory.server.core.annotations.CreateIndex; //导入依赖的package包/类
@CreateDS(name = "ExampleComDS", allowAnonAccess = true, partitions = { @CreatePartition(name = "examplecom", suffix = "o=TEST", contextEntry = @ContextEntry(entryLdif = "dn: o=TEST\n"
+ "dc: TEST\n" + "objectClass: top\n" + "objectClass: domain\n\n"), indexes = { @CreateIndex(attribute = "objectClass"),
@CreateIndex(attribute = "dc"), @CreateIndex(attribute = "ou") }) }, additionalInterceptors = { KeyDerivationInterceptor.class })
@CreateLdapServer(allowAnonymousAccess = true, transports = {
@CreateTransport(protocol = "LDAP", address = "localhost", port = ldapPort),
@CreateTransport(protocol = "LDAPS", address = "localhost", port = ldapsPort) },
saslHost = "localhost", saslPrincipal = "ldap/[email protected]", saslMechanisms = {
@SaslMechanism(name = SupportedSaslMechanisms.PLAIN, implClass = PlainMechanismHandler.class),
@SaslMechanism(name = SupportedSaslMechanisms.CRAM_MD5, implClass = CramMd5MechanismHandler.class),
@SaslMechanism(name = SupportedSaslMechanisms.DIGEST_MD5, implClass = DigestMd5MechanismHandler.class),
@SaslMechanism(name = SupportedSaslMechanisms.GSSAPI, implClass = GssapiMechanismHandler.class),
@SaslMechanism(name = SupportedSaslMechanisms.NTLM, implClass = NtlmMechanismHandler.class),
@SaslMechanism(name = SupportedSaslMechanisms.GSS_SPNEGO, implClass = NtlmMechanismHandler.class) }, extendedOpHandlers = { StartTlsHandler.class }
)
@CreateKdcServer(primaryRealm = "example.com", kdcPrincipal = "krbtgt/[email protected]", searchBaseDn = "o=TEST",
//maxTicketLifetime = 1000,
//maxRenewableLifetime = 2000,
transports = { @CreateTransport(protocol = "TCP", port = kdcPort), @CreateTransport(protocol = "UDP", port = kdcPort) })
public void start() throws Exception {
directoryService = DSAnnotationProcessor.getDirectoryService();
kdcServer = ServerAnnotationProcessor.getKdcServer(directoryService, kdcPort);
kdcServer.getConfig().setPaEncTimestampRequired(false);
schemaManager = directoryService.getSchemaManager();
final CreateLdapServer cl = (CreateLdapServer) AnnotationUtils.getInstance(CreateLdapServer.class);
ldapServer = ServerAnnotationProcessor.instantiateLdapServer(cl, directoryService);
ldapServer.setKeystoreFile(SecurityUtil.getAbsoluteFilePathFromClassPath("ArmorKS.jks").getAbsolutePath());
ldapServer.setCertificatePassword("changeit");
ldapServer.setEnabledCipherSuites(Arrays.asList(SecurityUtil.ENABLED_SSL_CIPHERS));
if (ldapServer.isStarted()) {
throw new IllegalStateException("Service already running");
}
ldapServer.start();
log.debug("LDAP started");
}