├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Feature_request.md └── workflows │ ├── build.yml │ ├── deploy.yml │ └── release.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── SECURITY.md ├── logo.png ├── opendj-cli ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── forgerock │ │ │ └── opendj │ │ │ └── cli │ │ │ ├── ApplicationKeyManager.java │ │ │ ├── Argument.java │ │ │ ├── ArgumentConstants.java │ │ │ ├── ArgumentException.java │ │ │ ├── ArgumentGroup.java │ │ │ ├── ArgumentParser.java │ │ │ ├── BooleanArgument.java │ │ │ ├── CliConstants.java │ │ │ ├── ClientException.java │ │ │ ├── CommandBuilder.java │ │ │ ├── CommonArguments.java │ │ │ ├── ConnectionFactoryProvider.java │ │ │ ├── ConsoleApplication.java │ │ │ ├── DocDescriptionSupplement.java │ │ │ ├── DocGenerationHelper.java │ │ │ ├── FileBasedArgument.java │ │ │ ├── HelpCallback.java │ │ │ ├── IntegerArgument.java │ │ │ ├── Menu.java │ │ │ ├── MenuBuilder.java │ │ │ ├── MenuCallback.java │ │ │ ├── MenuResult.java │ │ │ ├── MultiChoiceArgument.java │ │ │ ├── MultiColumnPrinter.java │ │ │ ├── PromptingTrustManager.java │ │ │ ├── ReturnCode.java │ │ │ ├── StringArgument.java │ │ │ ├── SubCommand.java │ │ │ ├── SubCommandArgumentParser.java │ │ │ ├── SubCommandUsageHandler.java │ │ │ ├── TabSeparatedTablePrinter.java │ │ │ ├── TableBuilder.java │ │ │ ├── TablePrinter.java │ │ │ ├── TableSerializer.java │ │ │ ├── TextTablePrinter.java │ │ │ ├── ToolRefDocContainer.java │ │ │ ├── ToolVersionHandler.java │ │ │ ├── Utils.java │ │ │ ├── ValidationCallback.java │ │ │ ├── VersionHandler.java │ │ │ └── package-info.java │ └── resources │ │ ├── com │ │ └── forgerock │ │ │ └── opendj │ │ │ └── cli │ │ │ ├── cli.properties │ │ │ ├── cli_ca_ES.properties │ │ │ ├── cli_de.properties │ │ │ ├── cli_es.properties │ │ │ ├── cli_fr.properties │ │ │ ├── cli_ja.properties │ │ │ ├── cli_ko.properties │ │ │ ├── cli_pl.properties │ │ │ ├── cli_zh_CN.properties │ │ │ └── cli_zh_TW.properties │ │ └── templates │ │ ├── dscfgAppendProps.ftl │ │ ├── dscfgListItem.ftl │ │ ├── dscfgListSubtypes.ftl │ │ ├── dscfgReference.ftl │ │ ├── dscfgSubcommand.ftl │ │ ├── dscfgVarListEntry.ftl │ │ ├── dscfgVariableList.ftl │ │ ├── optionsRefSect1.ftl │ │ ├── refEntry.ftl │ │ ├── refSect1.ftl │ │ └── refSect2.ftl │ └── test │ └── java │ └── com │ └── forgerock │ └── opendj │ └── cli │ ├── CliTestCase.java │ ├── ConsoleApplicationTestCase.java │ ├── TestSubCommandArgumentParserTestCase.java │ ├── TestSubCommandTestCase.java │ └── UtilsTestCase.java ├── opendj-config ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── forgerock │ │ │ └── opendj │ │ │ └── config │ │ │ ├── ACIPropertyDefinition.java │ │ │ ├── AbsoluteInheritedDefaultBehaviorProvider.java │ │ │ ├── AbstractManagedObjectDefinition.java │ │ │ ├── AdminException.java │ │ │ ├── AdministratorAction.java │ │ │ ├── AggregationPropertyDefinition.java │ │ │ ├── AliasDefaultBehaviorProvider.java │ │ │ ├── AttributeTypePropertyDefinition.java │ │ │ ├── BooleanPropertyDefinition.java │ │ │ ├── ClassPropertyDefinition.java │ │ │ ├── Configuration.java │ │ │ ├── ConfigurationClient.java │ │ │ ├── ConfigurationFramework.java │ │ │ ├── Constraint.java │ │ │ ├── DNPropertyDefinition.java │ │ │ ├── DecodingException.java │ │ │ ├── DefaultBehaviorProvider.java │ │ │ ├── DefaultBehaviorProviderVisitor.java │ │ │ ├── DefaultManagedObject.java │ │ │ ├── DefinedDefaultBehaviorProvider.java │ │ │ ├── DefinitionDecodingException.java │ │ │ ├── DefinitionResolver.java │ │ │ ├── DurationPropertyDefinition.java │ │ │ ├── DurationUnit.java │ │ │ ├── EnumPropertyDefinition.java │ │ │ ├── GenericConstraint.java │ │ │ ├── IPAddressMaskPropertyDefinition.java │ │ │ ├── IPAddressPropertyDefinition.java │ │ │ ├── InstantiableRelationDefinition.java │ │ │ ├── IntegerPropertyDefinition.java │ │ │ ├── LDAPProfile.java │ │ │ ├── ManagedObjectAlreadyExistsException.java │ │ │ ├── ManagedObjectDefinition.java │ │ │ ├── ManagedObjectDefinitionI18NResource.java │ │ │ ├── ManagedObjectDefinitionResource.java │ │ │ ├── ManagedObjectNotFoundException.java │ │ │ ├── ManagedObjectOption.java │ │ │ ├── ManagedObjectPath.java │ │ │ ├── ManagedObjectPathSerializer.java │ │ │ ├── OperationsException.java │ │ │ ├── OptionalRelationDefinition.java │ │ │ ├── PropertyDefinition.java │ │ │ ├── PropertyDefinitionUsageBuilder.java │ │ │ ├── PropertyDefinitionVisitor.java │ │ │ ├── PropertyException.java │ │ │ ├── PropertyNotFoundException.java │ │ │ ├── PropertyOption.java │ │ │ ├── PropertyProvider.java │ │ │ ├── PropertyValueVisitor.java │ │ │ ├── Reference.java │ │ │ ├── RelationDefinition.java │ │ │ ├── RelationDefinitionVisitor.java │ │ │ ├── RelationOption.java │ │ │ ├── RelativeInheritedDefaultBehaviorProvider.java │ │ │ ├── SetRelationDefinition.java │ │ │ ├── SingletonRelationDefinition.java │ │ │ ├── SizePropertyDefinition.java │ │ │ ├── SizeUnit.java │ │ │ ├── StringPropertyDefinition.java │ │ │ ├── Tag.java │ │ │ ├── TopCfgDefn.java │ │ │ ├── UndefinedDefaultBehaviorProvider.java │ │ │ ├── client │ │ │ ├── AdminClientException.java │ │ │ ├── AdminSecurityException.java │ │ │ ├── AuthenticationException.java │ │ │ ├── ClientConstraintHandler.java │ │ │ ├── ConcurrentModificationException.java │ │ │ ├── DriverBasedManagementContext.java │ │ │ ├── IllegalManagedObjectNameException.java │ │ │ ├── ManagedObject.java │ │ │ ├── ManagedObjectDecodingException.java │ │ │ ├── ManagementContext.java │ │ │ ├── MissingMandatoryPropertiesException.java │ │ │ ├── OperationRejectedException.java │ │ │ ├── ldap │ │ │ │ ├── DNBuilder.java │ │ │ │ ├── LDAPDriver.java │ │ │ │ ├── LDAPManagedObject.java │ │ │ │ ├── LDAPManagementContext.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── spi │ │ │ │ ├── AbstractManagedObject.java │ │ │ │ ├── Driver.java │ │ │ │ ├── Property.java │ │ │ │ ├── PropertySet.java │ │ │ │ └── package-info.java │ │ │ ├── conditions │ │ │ ├── ANDCondition.java │ │ │ ├── Condition.java │ │ │ ├── Conditions.java │ │ │ ├── ContainsCondition.java │ │ │ ├── IsPresentCondition.java │ │ │ ├── NOTCondition.java │ │ │ ├── ORCondition.java │ │ │ └── package-info.java │ │ │ ├── dsconfig │ │ │ ├── ArgumentExceptionFactory.java │ │ │ ├── BuildVersion.java │ │ │ ├── CLIProfile.java │ │ │ ├── CreateSubCommandHandler.java │ │ │ ├── DSConfig.java │ │ │ ├── DeleteSubCommandHandler.java │ │ │ ├── GetPropSubCommandHandler.java │ │ │ ├── HelpSubCommandHandler.java │ │ │ ├── LDAPManagementContextFactory.java │ │ │ ├── ListSubCommandHandler.java │ │ │ ├── PropertyEditorModification.java │ │ │ ├── PropertyValueEditor.java │ │ │ ├── PropertyValuePrinter.java │ │ │ ├── SetPropSubCommandHandler.java │ │ │ ├── SubCommandHandler.java │ │ │ ├── SubCommandHandlerFactory.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── server │ │ │ ├── AbstractConfigListenerAdaptor.java │ │ │ ├── ConfigAddListenerAdaptor.java │ │ │ ├── ConfigChangeListenerAdaptor.java │ │ │ ├── ConfigChangeResult.java │ │ │ ├── ConfigDeleteListenerAdaptor.java │ │ │ ├── ConfigException.java │ │ │ ├── ConfigExceptionFactory.java │ │ │ ├── ConfigurationAddListener.java │ │ │ ├── ConfigurationChangeListener.java │ │ │ ├── ConfigurationDeleteListener.java │ │ │ ├── ConstraintViolationException.java │ │ │ ├── DNBuilder.java │ │ │ ├── DelayedConfigAddListener.java │ │ │ ├── ServerConstraintHandler.java │ │ │ ├── ServerManagedObject.java │ │ │ ├── ServerManagedObjectAddListener.java │ │ │ ├── ServerManagedObjectAddListenerAdaptor.java │ │ │ ├── ServerManagedObjectChangeListener.java │ │ │ ├── ServerManagedObjectChangeListenerAdaptor.java │ │ │ ├── ServerManagedObjectDecodingException.java │ │ │ ├── ServerManagedObjectDeleteListener.java │ │ │ ├── ServerManagedObjectDeleteListenerAdaptor.java │ │ │ ├── ServerManagementContext.java │ │ │ ├── package-info.java │ │ │ └── spi │ │ │ ├── ConfigAddListener.java │ │ │ ├── ConfigChangeListener.java │ │ │ ├── ConfigDeleteListener.java │ │ │ ├── ConfigurationRepository.java │ │ │ └── package-info.java │ └── resources │ │ └── com │ │ └── forgerock │ │ └── opendj │ │ ├── dsconfig │ │ └── dsconfig.properties │ │ └── ldap │ │ └── config │ │ └── config.properties │ └── test │ ├── java │ └── org │ │ └── forgerock │ │ └── opendj │ │ └── config │ │ ├── AbstractManagedObjectDefinitionTest.java │ │ ├── AdminTestCase.java │ │ ├── AggregationPropertyDefinitionTest.java │ │ ├── AttributeTypePropertyDefinitionTest.java │ │ ├── BooleanPropertyDefinitionTest.java │ │ ├── ClassPropertyDefinitionTest.java │ │ ├── ConfigTestCase.java │ │ ├── ConfigurationMock.java │ │ ├── ConfigurationMockTest.java │ │ ├── DNPropertyDefinitionTest.java │ │ ├── DurationPropertyDefinitionTest.java │ │ ├── DurationUnitTest.java │ │ ├── EnumPropertyDefinitionTest.java │ │ ├── IntegerPropertyDefinitionTest.java │ │ ├── LDAPProfileTest.java │ │ ├── ManagedObjectDefinitionI18NResourceTest.java │ │ ├── ManagedObjectPathTest.java │ │ ├── MockLDAPProfile.java │ │ ├── RelativeInheritedDefaultBehaviorProviderTest.java │ │ ├── SizePropertyDefinitionTest.java │ │ ├── SizeUnitTest.java │ │ ├── StringPropertyDefinitionTest.java │ │ ├── TestCfg.java │ │ ├── TestChildCfg.java │ │ ├── TestChildCfgClient.java │ │ ├── TestChildCfgDefn.java │ │ ├── TestParentCfg.java │ │ ├── TestParentCfgClient.java │ │ ├── TestParentCfgDefn.java │ │ ├── TestTopCfgDefnTest.java │ │ ├── ValidateConfigDefinitionsTest.java │ │ ├── client │ │ └── ldap │ │ │ ├── AggregationClientTest.java │ │ │ ├── LDAPClientTest.java │ │ │ └── MockConstraint.java │ │ ├── dsconfig │ │ └── DSConfigParseTest.java │ │ └── server │ │ ├── AdminTestCaseUtils.java │ │ ├── AggregationServerTest.java │ │ ├── ConstraintTest.java │ │ ├── DNBuilderTest.java │ │ ├── DefaultBehaviorTest.java │ │ ├── ListenerTest.java │ │ └── MockConstraint.java │ └── resources │ └── org │ └── forgerock │ └── opendj │ └── config │ ├── TestChildCfgDefn.properties │ ├── TestChildConfiguration.xml │ ├── TestParentCfgDefn.properties │ └── TestParentConfiguration.xml ├── opendj-core ├── clirr-ignored-api-changes.xml ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── com │ │ │ └── forgerock │ │ │ │ ├── opendj │ │ │ │ ├── ldap │ │ │ │ │ ├── controls │ │ │ │ │ │ ├── AccountUsabilityRequestControl.java │ │ │ │ │ │ ├── AccountUsabilityResponseControl.java │ │ │ │ │ │ ├── AffinityControl.java │ │ │ │ │ │ ├── RealAttributesOnlyRequestControl.java │ │ │ │ │ │ ├── TransactionIdControl.java │ │ │ │ │ │ ├── VirtualAttributesOnlyRequestControl.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── extensions │ │ │ │ │ │ ├── AbortedTransactionExtendedResult.java │ │ │ │ │ │ ├── EndTransactionExtendedRequest.java │ │ │ │ │ │ ├── EndTransactionExtendedResult.java │ │ │ │ │ │ ├── GetConnectionIDExtendedRequest.java │ │ │ │ │ │ ├── GetConnectionIDExtendedResult.java │ │ │ │ │ │ ├── GetSymmetricKeyExtendedRequest.java │ │ │ │ │ │ ├── PasswordPolicyStateExtendedRequest.java │ │ │ │ │ │ ├── PasswordPolicyStateExtendedResult.java │ │ │ │ │ │ ├── PasswordPolicyStateOperation.java │ │ │ │ │ │ ├── PasswordPolicyStateOperationContainer.java │ │ │ │ │ │ ├── PasswordPolicyStateOperationType.java │ │ │ │ │ │ ├── StartTransactionExtendedRequest.java │ │ │ │ │ │ ├── StartTransactionExtendedResult.java │ │ │ │ │ │ └── package-info.java │ │ │ │ └── util │ │ │ │ │ ├── ASCIICharProp.java │ │ │ │ │ ├── Collections2.java │ │ │ │ │ ├── FipsStaticUtils.java │ │ │ │ │ ├── Iterables.java │ │ │ │ │ ├── Iterators.java │ │ │ │ │ ├── ManifestUtil.java │ │ │ │ │ ├── OperatingSystem.java │ │ │ │ │ ├── PackedLong.java │ │ │ │ │ ├── Predicate.java │ │ │ │ │ ├── ReferenceCountedObject.java │ │ │ │ │ ├── SizeLimitInputStream.java │ │ │ │ │ ├── SmallSet.java │ │ │ │ │ ├── StaticUtils.java │ │ │ │ │ ├── StringPrepProfile.java │ │ │ │ │ ├── SubstringReader.java │ │ │ │ │ └── package-info.java │ │ │ │ └── reactive │ │ │ │ ├── Action.java │ │ │ │ ├── Completable.java │ │ │ │ ├── Consumer.java │ │ │ │ ├── ReactiveFilter.java │ │ │ │ ├── ReactiveHandler.java │ │ │ │ ├── RxJavaStreams.java │ │ │ │ ├── ServerConnectionFactoryAdapter.java │ │ │ │ ├── Single.java │ │ │ │ ├── Stream.java │ │ │ │ └── package-info.java │ │ └── org │ │ │ ├── forgerock │ │ │ └── opendj │ │ │ │ ├── io │ │ │ │ ├── ASN1.java │ │ │ │ ├── ASN1ByteSequenceReader.java │ │ │ │ ├── ASN1InputStreamReader.java │ │ │ │ ├── ASN1OutputStreamWriter.java │ │ │ │ ├── ASN1Reader.java │ │ │ │ ├── ASN1Writer.java │ │ │ │ ├── AbstractASN1Reader.java │ │ │ │ ├── AbstractASN1Writer.java │ │ │ │ ├── AbstractLDAPMessageHandler.java │ │ │ │ ├── LDAP.java │ │ │ │ ├── LDAPMessageHandler.java │ │ │ │ ├── LDAPReader.java │ │ │ │ ├── LDAPWriter.java │ │ │ │ └── package-info.java │ │ │ │ ├── ldap │ │ │ │ ├── AVA.java │ │ │ │ ├── AbstractAsynchronousConnection.java │ │ │ │ ├── AbstractAttribute.java │ │ │ │ ├── AbstractConnection.java │ │ │ │ ├── AbstractConnectionWrapper.java │ │ │ │ ├── AbstractEntry.java │ │ │ │ ├── AbstractFilterVisitor.java │ │ │ │ ├── AbstractMapEntry.java │ │ │ │ ├── AbstractSynchronousConnection.java │ │ │ │ ├── AddressMask.java │ │ │ │ ├── Assertion.java │ │ │ │ ├── AssertionFailureException.java │ │ │ │ ├── Attribute.java │ │ │ │ ├── AttributeDescription.java │ │ │ │ ├── AttributeFactory.java │ │ │ │ ├── AttributeFilter.java │ │ │ │ ├── AttributeParser.java │ │ │ │ ├── Attributes.java │ │ │ │ ├── AuthenticationException.java │ │ │ │ ├── AuthorizationException.java │ │ │ │ ├── Base64.java │ │ │ │ ├── ByteSequence.java │ │ │ │ ├── ByteSequenceReader.java │ │ │ │ ├── ByteString.java │ │ │ │ ├── ByteStringBuilder.java │ │ │ │ ├── CachedConnectionPool.java │ │ │ │ ├── CancelRequestListener.java │ │ │ │ ├── CancelledResultException.java │ │ │ │ ├── CommonLDAPOptions.java │ │ │ │ ├── ConditionResult.java │ │ │ │ ├── Connection.java │ │ │ │ ├── ConnectionEventListener.java │ │ │ │ ├── ConnectionException.java │ │ │ │ ├── ConnectionFactory.java │ │ │ │ ├── ConnectionLoadBalancer.java │ │ │ │ ├── ConnectionPool.java │ │ │ │ ├── ConnectionSecurityLayer.java │ │ │ │ ├── Connections.java │ │ │ │ ├── ConsistentHashDistributionLoadBalancer.java │ │ │ │ ├── ConsistentHashMap.java │ │ │ │ ├── ConstraintViolationException.java │ │ │ │ ├── DN.java │ │ │ │ ├── DecodeException.java │ │ │ │ ├── DecodeOptions.java │ │ │ │ ├── DereferenceAliasesPolicy.java │ │ │ │ ├── Entries.java │ │ │ │ ├── Entry.java │ │ │ │ ├── EntryFactory.java │ │ │ │ ├── EntryNotFoundException.java │ │ │ │ ├── Filter.java │ │ │ │ ├── FilterVisitor.java │ │ │ │ ├── Functions.java │ │ │ │ ├── GSERParser.java │ │ │ │ ├── GeneralizedTime.java │ │ │ │ ├── InetAddressValidator.java │ │ │ │ ├── IntermediateResponseHandler.java │ │ │ │ ├── InternalConnection.java │ │ │ │ ├── InternalConnectionFactory.java │ │ │ │ ├── KeyManagers.java │ │ │ │ ├── LDAPClientContext.java │ │ │ │ ├── LDAPClientContextEventListener.java │ │ │ │ ├── LDAPConnectionFactory.java │ │ │ │ ├── LDAPListener.java │ │ │ │ ├── LDAPUrl.java │ │ │ │ ├── LdapException.java │ │ │ │ ├── LdapPromise.java │ │ │ │ ├── LdapResultHandler.java │ │ │ │ ├── LinkedAttribute.java │ │ │ │ ├── LinkedHashMapEntry.java │ │ │ │ ├── LoadBalancer.java │ │ │ │ ├── LoadBalancerEventListener.java │ │ │ │ ├── Matcher.java │ │ │ │ ├── MemoryBackend.java │ │ │ │ ├── Modification.java │ │ │ │ ├── ModificationType.java │ │ │ │ ├── MultipleEntriesFoundException.java │ │ │ │ ├── ProviderNotFoundException.java │ │ │ │ ├── RDN.java │ │ │ │ ├── ReferralException.java │ │ │ │ ├── RequestContext.java │ │ │ │ ├── RequestHandler.java │ │ │ │ ├── RequestHandlerFactory.java │ │ │ │ ├── RequestHandlerFactoryAdapter.java │ │ │ │ ├── RequestLoadBalancer.java │ │ │ │ ├── ResultCode.java │ │ │ │ ├── RootDSE.java │ │ │ │ ├── SSLContextBuilder.java │ │ │ │ ├── SchemaResolver.java │ │ │ │ ├── SearchResultHandler.java │ │ │ │ ├── SearchResultReferenceIOException.java │ │ │ │ ├── SearchScope.java │ │ │ │ ├── ServerConnection.java │ │ │ │ ├── ServerConnectionFactory.java │ │ │ │ ├── SortKey.java │ │ │ │ ├── TimeoutChecker.java │ │ │ │ ├── TimeoutEventListener.java │ │ │ │ ├── TimeoutResultException.java │ │ │ │ ├── TreeMapEntry.java │ │ │ │ ├── TrustManagers.java │ │ │ │ ├── controls │ │ │ │ │ ├── ADNotificationRequestControl.java │ │ │ │ │ ├── AssertionRequestControl.java │ │ │ │ │ ├── AuthorizationIdentityRequestControl.java │ │ │ │ │ ├── AuthorizationIdentityResponseControl.java │ │ │ │ │ ├── Control.java │ │ │ │ │ ├── ControlDecoder.java │ │ │ │ │ ├── EntryChangeNotificationResponseControl.java │ │ │ │ │ ├── GenericControl.java │ │ │ │ │ ├── GetEffectiveRightsRequestControl.java │ │ │ │ │ ├── ManageDsaITRequestControl.java │ │ │ │ │ ├── MatchedValuesRequestControl.java │ │ │ │ │ ├── PasswordExpiredResponseControl.java │ │ │ │ │ ├── PasswordExpiringResponseControl.java │ │ │ │ │ ├── PasswordPolicyErrorType.java │ │ │ │ │ ├── PasswordPolicyRequestControl.java │ │ │ │ │ ├── PasswordPolicyResponseControl.java │ │ │ │ │ ├── PasswordPolicyWarningType.java │ │ │ │ │ ├── PermissiveModifyRequestControl.java │ │ │ │ │ ├── PersistentSearchChangeType.java │ │ │ │ │ ├── PersistentSearchRequestControl.java │ │ │ │ │ ├── PostReadRequestControl.java │ │ │ │ │ ├── PostReadResponseControl.java │ │ │ │ │ ├── PreReadRequestControl.java │ │ │ │ │ ├── PreReadResponseControl.java │ │ │ │ │ ├── ProxiedAuthV1RequestControl.java │ │ │ │ │ ├── ProxiedAuthV2RequestControl.java │ │ │ │ │ ├── RelaxRulesControl.java │ │ │ │ │ ├── ServerSideSortRequestControl.java │ │ │ │ │ ├── ServerSideSortResponseControl.java │ │ │ │ │ ├── SimplePagedResultsControl.java │ │ │ │ │ ├── SubentriesRequestControl.java │ │ │ │ │ ├── SubtreeDeleteRequestControl.java │ │ │ │ │ ├── TransactionSpecificationRequestControl.java │ │ │ │ │ ├── VirtualListViewRequestControl.java │ │ │ │ │ ├── VirtualListViewResponseControl.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ ├── requests │ │ │ │ │ ├── AbandonRequest.java │ │ │ │ │ ├── AbandonRequestImpl.java │ │ │ │ │ ├── AbstractBindRequest.java │ │ │ │ │ ├── AbstractExtendedRequest.java │ │ │ │ │ ├── AbstractRequestImpl.java │ │ │ │ │ ├── AbstractSASLBindRequest.java │ │ │ │ │ ├── AbstractUnmodifiableBindRequest.java │ │ │ │ │ ├── AbstractUnmodifiableExtendedRequest.java │ │ │ │ │ ├── AbstractUnmodifiableRequest.java │ │ │ │ │ ├── AbstractUnmodifiableSASLBindRequest.java │ │ │ │ │ ├── AddRequest.java │ │ │ │ │ ├── AddRequestImpl.java │ │ │ │ │ ├── AnonymousSASLBindRequest.java │ │ │ │ │ ├── AnonymousSASLBindRequestImpl.java │ │ │ │ │ ├── BindClient.java │ │ │ │ │ ├── BindClientImpl.java │ │ │ │ │ ├── BindRequest.java │ │ │ │ │ ├── CRAMMD5SASLBindRequest.java │ │ │ │ │ ├── CRAMMD5SASLBindRequestImpl.java │ │ │ │ │ ├── CancelExtendedRequest.java │ │ │ │ │ ├── CancelExtendedRequestImpl.java │ │ │ │ │ ├── CompareRequest.java │ │ │ │ │ ├── CompareRequestImpl.java │ │ │ │ │ ├── DeleteRequest.java │ │ │ │ │ ├── DeleteRequestImpl.java │ │ │ │ │ ├── DigestMD5SASLBindRequest.java │ │ │ │ │ ├── DigestMD5SASLBindRequestImpl.java │ │ │ │ │ ├── ExtendedRequest.java │ │ │ │ │ ├── ExtendedRequestDecoder.java │ │ │ │ │ ├── ExternalSASLBindRequest.java │ │ │ │ │ ├── ExternalSASLBindRequestImpl.java │ │ │ │ │ ├── GSSAPISASLBindRequest.java │ │ │ │ │ ├── GSSAPISASLBindRequestImpl.java │ │ │ │ │ ├── GenericBindRequest.java │ │ │ │ │ ├── GenericBindRequestImpl.java │ │ │ │ │ ├── GenericExtendedRequest.java │ │ │ │ │ ├── GenericExtendedRequestImpl.java │ │ │ │ │ ├── ModifyDNRequest.java │ │ │ │ │ ├── ModifyDNRequestImpl.java │ │ │ │ │ ├── ModifyRequest.java │ │ │ │ │ ├── ModifyRequestImpl.java │ │ │ │ │ ├── PasswordModifyExtendedRequest.java │ │ │ │ │ ├── PasswordModifyExtendedRequestImpl.java │ │ │ │ │ ├── PlainSASLBindRequest.java │ │ │ │ │ ├── PlainSASLBindRequestImpl.java │ │ │ │ │ ├── Request.java │ │ │ │ │ ├── Requests.java │ │ │ │ │ ├── SASLBindClientImpl.java │ │ │ │ │ ├── SASLBindRequest.java │ │ │ │ │ ├── SearchRequest.java │ │ │ │ │ ├── SearchRequestImpl.java │ │ │ │ │ ├── SimpleBindRequest.java │ │ │ │ │ ├── SimpleBindRequestImpl.java │ │ │ │ │ ├── StartTLSExtendedRequest.java │ │ │ │ │ ├── StartTLSExtendedRequestImpl.java │ │ │ │ │ ├── UnbindRequest.java │ │ │ │ │ ├── UnbindRequestImpl.java │ │ │ │ │ ├── UnmodifiableAbandonRequestImpl.java │ │ │ │ │ ├── UnmodifiableAddRequestImpl.java │ │ │ │ │ ├── UnmodifiableAnonymousSASLBindRequestImpl.java │ │ │ │ │ ├── UnmodifiableCRAMMD5SASLBindRequestImpl.java │ │ │ │ │ ├── UnmodifiableCancelExtendedRequestImpl.java │ │ │ │ │ ├── UnmodifiableCompareRequestImpl.java │ │ │ │ │ ├── UnmodifiableDeleteRequestImpl.java │ │ │ │ │ ├── UnmodifiableDigestMD5SASLBindRequestImpl.java │ │ │ │ │ ├── UnmodifiableExternalSASLBindRequestImpl.java │ │ │ │ │ ├── UnmodifiableGSSAPISASLBindRequestImpl.java │ │ │ │ │ ├── UnmodifiableGenericBindRequestImpl.java │ │ │ │ │ ├── UnmodifiableGenericExtendedRequestImpl.java │ │ │ │ │ ├── UnmodifiableModifyDNRequestImpl.java │ │ │ │ │ ├── UnmodifiableModifyRequestImpl.java │ │ │ │ │ ├── UnmodifiablePasswordModifyExtendedRequestImpl.java │ │ │ │ │ ├── UnmodifiablePlainSASLBindRequestImpl.java │ │ │ │ │ ├── UnmodifiableSearchRequestImpl.java │ │ │ │ │ ├── UnmodifiableSimpleBindRequestImpl.java │ │ │ │ │ ├── UnmodifiableStartTLSExtendedRequestImpl.java │ │ │ │ │ ├── UnmodifiableUnbindRequestImpl.java │ │ │ │ │ ├── UnmodifiableWhoAmIExtendedRequestImpl.java │ │ │ │ │ ├── WhoAmIExtendedRequest.java │ │ │ │ │ ├── WhoAmIExtendedRequestImpl.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── responses │ │ │ │ │ ├── AbstractExtendedResult.java │ │ │ │ │ ├── AbstractExtendedResultDecoder.java │ │ │ │ │ ├── AbstractIntermediateResponse.java │ │ │ │ │ ├── AbstractResponseImpl.java │ │ │ │ │ ├── AbstractResultImpl.java │ │ │ │ │ ├── AbstractUnmodifiableExtendedResultImpl.java │ │ │ │ │ ├── AbstractUnmodifiableIntermediateResponseImpl.java │ │ │ │ │ ├── AbstractUnmodifiableResponseImpl.java │ │ │ │ │ ├── AbstractUnmodifiableResultImpl.java │ │ │ │ │ ├── BindResult.java │ │ │ │ │ ├── BindResultImpl.java │ │ │ │ │ ├── CompareResult.java │ │ │ │ │ ├── CompareResultImpl.java │ │ │ │ │ ├── ExtendedResult.java │ │ │ │ │ ├── ExtendedResultDecoder.java │ │ │ │ │ ├── GenericExtendedResult.java │ │ │ │ │ ├── GenericExtendedResultImpl.java │ │ │ │ │ ├── GenericIntermediateResponse.java │ │ │ │ │ ├── GenericIntermediateResponseImpl.java │ │ │ │ │ ├── IntermediateResponse.java │ │ │ │ │ ├── PasswordModifyExtendedResult.java │ │ │ │ │ ├── PasswordModifyExtendedResultImpl.java │ │ │ │ │ ├── Response.java │ │ │ │ │ ├── Responses.java │ │ │ │ │ ├── Result.java │ │ │ │ │ ├── ResultImpl.java │ │ │ │ │ ├── SearchResultEntry.java │ │ │ │ │ ├── SearchResultEntryImpl.java │ │ │ │ │ ├── SearchResultReference.java │ │ │ │ │ ├── SearchResultReferenceImpl.java │ │ │ │ │ ├── UnmodifiableBindResultImpl.java │ │ │ │ │ ├── UnmodifiableCompareResultImpl.java │ │ │ │ │ ├── UnmodifiableGenericExtendedResultImpl.java │ │ │ │ │ ├── UnmodifiableGenericIntermediateResponseImpl.java │ │ │ │ │ ├── UnmodifiablePasswordModifyExtendedResultImpl.java │ │ │ │ │ ├── UnmodifiableResultImpl.java │ │ │ │ │ ├── UnmodifiableSearchResultEntryImpl.java │ │ │ │ │ ├── UnmodifiableSearchResultReferenceImpl.java │ │ │ │ │ ├── UnmodifiableWhoAmIExtendedResultImpl.java │ │ │ │ │ ├── WhoAmIExtendedResult.java │ │ │ │ │ ├── WhoAmIExtendedResultImpl.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── schema │ │ │ │ │ ├── AbstractApproximateMatchingRuleImpl.java │ │ │ │ │ ├── AbstractEqualityMatchingRuleImpl.java │ │ │ │ │ ├── AbstractMatchingRuleImpl.java │ │ │ │ │ ├── AbstractOrderingMatchingRuleImpl.java │ │ │ │ │ ├── AbstractSchemaElement.java │ │ │ │ │ ├── AbstractSubstringMatchingRuleImpl.java │ │ │ │ │ ├── AbstractSyntaxImpl.java │ │ │ │ │ ├── AttributeType.java │ │ │ │ │ ├── AttributeTypeSyntaxImpl.java │ │ │ │ │ ├── AttributeUsage.java │ │ │ │ │ ├── AuthPasswordExactEqualityMatchingRuleImpl.java │ │ │ │ │ ├── AuthPasswordSyntaxImpl.java │ │ │ │ │ ├── BinarySyntaxImpl.java │ │ │ │ │ ├── BitStringEqualityMatchingRuleImpl.java │ │ │ │ │ ├── BitStringSyntaxImpl.java │ │ │ │ │ ├── BooleanEqualityMatchingRuleImpl.java │ │ │ │ │ ├── BooleanSyntaxImpl.java │ │ │ │ │ ├── CaseExactEqualityMatchingRuleImpl.java │ │ │ │ │ ├── CaseExactIA5EqualityMatchingRuleImpl.java │ │ │ │ │ ├── CaseExactIA5SubstringMatchingRuleImpl.java │ │ │ │ │ ├── CaseExactOrderingMatchingRuleImpl.java │ │ │ │ │ ├── CaseExactSubstringMatchingRuleImpl.java │ │ │ │ │ ├── CaseIgnoreEqualityMatchingRuleImpl.java │ │ │ │ │ ├── CaseIgnoreIA5EqualityMatchingRuleImpl.java │ │ │ │ │ ├── CaseIgnoreIA5SubstringMatchingRuleImpl.java │ │ │ │ │ ├── CaseIgnoreListEqualityMatchingRuleImpl.java │ │ │ │ │ ├── CaseIgnoreListSubstringMatchingRuleImpl.java │ │ │ │ │ ├── CaseIgnoreOrderingMatchingRuleImpl.java │ │ │ │ │ ├── CaseIgnoreSubstringMatchingRuleImpl.java │ │ │ │ │ ├── CertificateExactAssertionSyntaxImpl.java │ │ │ │ │ ├── CertificateExactMatchingRuleImpl.java │ │ │ │ │ ├── CertificateListSyntaxImpl.java │ │ │ │ │ ├── CertificatePairSyntaxImpl.java │ │ │ │ │ ├── CertificateSyntaxImpl.java │ │ │ │ │ ├── CollationMatchingRulesImpl.java │ │ │ │ │ ├── ConflictingSchemaElementException.java │ │ │ │ │ ├── CoreSchema.java │ │ │ │ │ ├── CoreSchemaImpl.java │ │ │ │ │ ├── CoreSchemaSupportedLocales.java │ │ │ │ │ ├── CountryStringSyntaxImpl.java │ │ │ │ │ ├── DITContentRule.java │ │ │ │ │ ├── DITContentRuleSyntaxImpl.java │ │ │ │ │ ├── DITStructureRule.java │ │ │ │ │ ├── DITStructureRuleSyntaxImpl.java │ │ │ │ │ ├── DelayedSchema.java │ │ │ │ │ ├── DeliveryMethodSyntaxImpl.java │ │ │ │ │ ├── DirectoryStringFirstComponentEqualityMatchingRuleImpl.java │ │ │ │ │ ├── DirectoryStringSyntaxImpl.java │ │ │ │ │ ├── DistinguishedNameEqualityMatchingRuleImpl.java │ │ │ │ │ ├── DistinguishedNameSyntaxImpl.java │ │ │ │ │ ├── DoubleMetaphoneApproximateMatchingRuleImpl.java │ │ │ │ │ ├── EnhancedGuideSyntaxImpl.java │ │ │ │ │ ├── EnumOrderingMatchingRule.java │ │ │ │ │ ├── EnumSyntaxImpl.java │ │ │ │ │ ├── FacsimileNumberSyntaxImpl.java │ │ │ │ │ ├── FaxSyntaxImpl.java │ │ │ │ │ ├── GeneralizedTimeEqualityMatchingRuleImpl.java │ │ │ │ │ ├── GeneralizedTimeOrderingMatchingRuleImpl.java │ │ │ │ │ ├── GeneralizedTimeSyntaxImpl.java │ │ │ │ │ ├── GenerateCoreSchema.java │ │ │ │ │ ├── GuideSyntaxImpl.java │ │ │ │ │ ├── IA5StringSyntaxImpl.java │ │ │ │ │ ├── IntegerEqualityMatchingRuleImpl.java │ │ │ │ │ ├── IntegerFirstComponentEqualityMatchingRuleImpl.java │ │ │ │ │ ├── IntegerOrderingMatchingRuleImpl.java │ │ │ │ │ ├── IntegerSyntaxImpl.java │ │ │ │ │ ├── JPEGSyntaxImpl.java │ │ │ │ │ ├── KeywordEqualityMatchingRuleImpl.java │ │ │ │ │ ├── LDAPSyntaxDescriptionSyntaxImpl.java │ │ │ │ │ ├── MatchingRule.java │ │ │ │ │ ├── MatchingRuleImpl.java │ │ │ │ │ ├── MatchingRuleSyntaxImpl.java │ │ │ │ │ ├── MatchingRuleUse.java │ │ │ │ │ ├── MatchingRuleUseSyntaxImpl.java │ │ │ │ │ ├── NameAndOptionalUIDSyntaxImpl.java │ │ │ │ │ ├── NameForm.java │ │ │ │ │ ├── NameFormSyntaxImpl.java │ │ │ │ │ ├── NumericStringEqualityMatchingRuleImpl.java │ │ │ │ │ ├── NumericStringOrderingMatchingRuleImpl.java │ │ │ │ │ ├── NumericStringSubstringMatchingRuleImpl.java │ │ │ │ │ ├── NumericStringSyntaxImpl.java │ │ │ │ │ ├── OIDSyntaxImpl.java │ │ │ │ │ ├── ObjectClass.java │ │ │ │ │ ├── ObjectClassSyntaxImpl.java │ │ │ │ │ ├── ObjectClassType.java │ │ │ │ │ ├── ObjectIdentifierEqualityMatchingRuleImpl.java │ │ │ │ │ ├── ObjectIdentifierFirstComponentEqualityMatchingRuleImpl.java │ │ │ │ │ ├── OctetStringEqualityMatchingRuleImpl.java │ │ │ │ │ ├── OctetStringOrderingMatchingRuleImpl.java │ │ │ │ │ ├── OctetStringSubstringMatchingRuleImpl.java │ │ │ │ │ ├── OctetStringSyntaxImpl.java │ │ │ │ │ ├── OtherMailboxSyntaxImpl.java │ │ │ │ │ ├── PostalAddressSyntaxImpl.java │ │ │ │ │ ├── PresentationAddressEqualityMatchingRuleImpl.java │ │ │ │ │ ├── PresentationAddressSyntaxImpl.java │ │ │ │ │ ├── PrintableStringSyntaxImpl.java │ │ │ │ │ ├── ProtocolInformationEqualityMatchingRuleImpl.java │ │ │ │ │ ├── ProtocolInformationSyntaxImpl.java │ │ │ │ │ ├── RegexSyntaxImpl.java │ │ │ │ │ ├── Schema.java │ │ │ │ │ ├── SchemaBuilder.java │ │ │ │ │ ├── SchemaConstants.java │ │ │ │ │ ├── SchemaElement.java │ │ │ │ │ ├── SchemaException.java │ │ │ │ │ ├── SchemaOptions.java │ │ │ │ │ ├── SchemaUtils.java │ │ │ │ │ ├── SchemaValidationPolicy.java │ │ │ │ │ ├── SubstringAssertionSyntaxImpl.java │ │ │ │ │ ├── SupportedAlgorithmSyntaxImpl.java │ │ │ │ │ ├── Syntax.java │ │ │ │ │ ├── SyntaxImpl.java │ │ │ │ │ ├── TelephoneNumberEqualityMatchingRuleImpl.java │ │ │ │ │ ├── TelephoneNumberSubstringMatchingRuleImpl.java │ │ │ │ │ ├── TelephoneNumberSyntaxImpl.java │ │ │ │ │ ├── TeletexTerminalIdentifierSyntaxImpl.java │ │ │ │ │ ├── TelexNumberSyntaxImpl.java │ │ │ │ │ ├── TimeBasedMatchingRulesImpl.java │ │ │ │ │ ├── UTCTimeSyntaxImpl.java │ │ │ │ │ ├── UUIDEqualityMatchingRuleImpl.java │ │ │ │ │ ├── UUIDOrderingMatchingRuleImpl.java │ │ │ │ │ ├── UUIDSyntaxImpl.java │ │ │ │ │ ├── UniqueMemberEqualityMatchingRuleImpl.java │ │ │ │ │ ├── UnknownSchemaElementException.java │ │ │ │ │ ├── UserPasswordExactEqualityMatchingRuleImpl.java │ │ │ │ │ ├── UserPasswordSyntaxImpl.java │ │ │ │ │ └── package-info.java │ │ │ │ └── spi │ │ │ │ │ ├── BindResultLdapPromiseImpl.java │ │ │ │ │ ├── ConnectionState.java │ │ │ │ │ ├── ExtendedResultLdapPromiseImpl.java │ │ │ │ │ ├── IndexQueryFactory.java │ │ │ │ │ ├── Indexer.java │ │ │ │ │ ├── IndexingOptions.java │ │ │ │ │ ├── LDAPConnectionFactoryImpl.java │ │ │ │ │ ├── LDAPConnectionImpl.java │ │ │ │ │ ├── LDAPListenerImpl.java │ │ │ │ │ ├── LdapMessages.java │ │ │ │ │ ├── LdapPromiseImpl.java │ │ │ │ │ ├── LdapPromiseWrapper.java │ │ │ │ │ ├── LdapPromises.java │ │ │ │ │ ├── Provider.java │ │ │ │ │ ├── ResultLdapPromiseImpl.java │ │ │ │ │ ├── SearchResultLdapPromiseImpl.java │ │ │ │ │ ├── TransportProvider.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── ldif │ │ │ │ ├── AbstractLDIFReader.java │ │ │ │ ├── AbstractLDIFStream.java │ │ │ │ ├── AbstractLDIFWriter.java │ │ │ │ ├── ChangeRecord.java │ │ │ │ ├── ChangeRecordReader.java │ │ │ │ ├── ChangeRecordVisitor.java │ │ │ │ ├── ChangeRecordVisitorWriter.java │ │ │ │ ├── ChangeRecordWriter.java │ │ │ │ ├── ConnectionChangeRecordWriter.java │ │ │ │ ├── ConnectionEntryReader.java │ │ │ │ ├── ConnectionEntryWriter.java │ │ │ │ ├── EntryGenerator.java │ │ │ │ ├── EntryReader.java │ │ │ │ ├── EntryWriter.java │ │ │ │ ├── LDIF.java │ │ │ │ ├── LDIFChangeRecordReader.java │ │ │ │ ├── LDIFChangeRecordWriter.java │ │ │ │ ├── LDIFEntryReader.java │ │ │ │ ├── LDIFEntryWriter.java │ │ │ │ ├── RejectedChangeRecordListener.java │ │ │ │ ├── RejectedLDIFListener.java │ │ │ │ ├── TemplateFile.java │ │ │ │ ├── TemplateTag.java │ │ │ │ └── package-info.java │ │ │ │ └── security │ │ │ │ ├── ExternalKeyWrappingStrategy.java │ │ │ │ ├── KeyProtector.java │ │ │ │ ├── KeyStoreImpl.java │ │ │ │ ├── KeyStoreObject.java │ │ │ │ ├── KeyStoreObjectCache.java │ │ │ │ ├── KeyStoreParameters.java │ │ │ │ ├── LocalizedKeyStoreException.java │ │ │ │ ├── OpenDJProvider.java │ │ │ │ ├── OpenDJProviderSchema.java │ │ │ │ └── package-info.java │ │ │ └── openidentityplatform │ │ │ └── opendj │ │ │ └── ldif │ │ │ ├── JSONEntryReader.java │ │ │ └── JSONEntryWriter.java │ ├── javadoc │ │ └── overview.html │ └── resources │ │ ├── com │ │ └── forgerock │ │ │ └── opendj │ │ │ ├── ldap │ │ │ ├── core.properties │ │ │ ├── core_de.properties │ │ │ ├── core_es.properties │ │ │ ├── core_fr.properties │ │ │ ├── core_ja.properties │ │ │ ├── core_ko.properties │ │ │ ├── core_zh_CN.properties │ │ │ └── core_zh_TW.properties │ │ │ └── security │ │ │ └── keystore.properties │ │ └── org │ │ └── forgerock │ │ └── opendj │ │ ├── ldif │ │ ├── addrate.template │ │ ├── cities │ │ ├── example.template │ │ ├── first.names │ │ ├── last.names │ │ ├── people_and_groups.template │ │ ├── states │ │ └── streets │ │ └── security │ │ └── 03-keystore.ldif │ ├── site │ └── xdoc │ │ └── index.xml.vm │ └── test │ ├── java │ ├── com │ │ └── forgerock │ │ │ └── opendj │ │ │ ├── ldap │ │ │ └── controls │ │ │ │ ├── AccountUsabilityRequestControlTestCase.java │ │ │ │ ├── AccountUsabilityResponseControlTestCase.java │ │ │ │ └── AffinityControlTestCase.java │ │ │ └── util │ │ │ ├── ASCIICharPropTestCase.java │ │ │ ├── OperatingSystemTestCase.java │ │ │ ├── ReferenceCountedObjectTestCase.java │ │ │ ├── SmallSetTest.java │ │ │ ├── StaticUtilsTestCase.java │ │ │ ├── StringPrepProfileTestCase.java │ │ │ └── UtilTestCase.java │ └── org │ │ └── forgerock │ │ └── opendj │ │ ├── io │ │ ├── ASN1ByteSequenceReaderTestCase.java │ │ ├── ASN1InputStreamReaderTestCase.java │ │ ├── ASN1OutputStreamWriterTestCase.java │ │ ├── ASN1ReaderTestCase.java │ │ ├── ASN1WriterTestCase.java │ │ └── LDAPReaderWriterTestCase.java │ │ ├── ldap │ │ ├── AVATestCase.java │ │ ├── AbstractAsynchronousConnectionTestCase.java │ │ ├── AddressMaskTestCase.java │ │ ├── AttributeDescriptionTestCase.java │ │ ├── AttributeParserTestCase.java │ │ ├── AttributesTestCase.java │ │ ├── ByteSequenceReaderTest.java │ │ ├── ByteSequenceTestCase.java │ │ ├── ByteStringBuilderTestCase.java │ │ ├── ByteStringTestCase.java │ │ ├── ConditionResultTestCase.java │ │ ├── ConnectionPoolTestCase.java │ │ ├── ConnectionsTestCase.java │ │ ├── ConsistentHashDistributionLoadBalancerTest.java │ │ ├── ConsistentHashMapTest.java │ │ ├── DNTestCase.java │ │ ├── DataProviderIterator.java │ │ ├── EntriesTestCase.java │ │ ├── EntryTestCase.java │ │ ├── FilterTestCase.java │ │ ├── GSERParserTestCase.java │ │ ├── GeneralizedTimeTest.java │ │ ├── HeartBeatConnectionFactoryTestCase.java │ │ ├── LDAPServer.java │ │ ├── LDAPUrlTestCase.java │ │ ├── LinkedAttributeTestCase.java │ │ ├── LoadBalancerTestCase.java │ │ ├── MemoryBackendTestCase.java │ │ ├── MockConnectionEventListener.java │ │ ├── MockScheduler.java │ │ ├── ModificationTypeTestCase.java │ │ ├── PackedLongTestCase.java │ │ ├── RDNTestCase.java │ │ ├── RequestLoadBalancerTestCase.java │ │ ├── ResultCodeTestCase.java │ │ ├── SdkTestCase.java │ │ ├── SearchScopeTestCase.java │ │ ├── TestBase64.java │ │ ├── TestCaseUtils.java │ │ ├── TestCaseUtilsTestCase.java │ │ ├── TrustManagersTestCase.java │ │ ├── controls │ │ │ └── ControlsTestCase.java │ │ ├── requests │ │ │ ├── AbandonRequestTestCase.java │ │ │ ├── AddRequestTestCase.java │ │ │ ├── AnonymousSASLBindRequestTestCase.java │ │ │ ├── BindRequestTestCase.java │ │ │ ├── CRAMMD5SASLBindRequestTestCase.java │ │ │ ├── CancelExtendedRequestTestCase.java │ │ │ ├── CompareRequestTestCase.java │ │ │ ├── DeleteRequestTestCase.java │ │ │ ├── DigestMD5SASLBindRequestTestCase.java │ │ │ ├── ExtendedRequestTestCase.java │ │ │ ├── ExternalSASLBindRequestTestCase.java │ │ │ ├── GSSAPISASLBindRequestTestCase.java │ │ │ ├── GenericBindRequestTestCase.java │ │ │ ├── GenericExtendedRequestTestCase.java │ │ │ ├── ModifyDNRequestTestCase.java │ │ │ ├── ModifyRequestTestCase.java │ │ │ ├── PasswordModifyExtendedRequestTestCase.java │ │ │ ├── PlainSASLBindRequestTestCase.java │ │ │ ├── RequestsTestCase.java │ │ │ ├── SearchRequestTestCase.java │ │ │ ├── SimpleBindRequestTestCase.java │ │ │ ├── StartTLSExtendedRequestTestCase.java │ │ │ ├── UnbindRequestTestCase.java │ │ │ └── WhoAmIExtendedRequestTestCase.java │ │ ├── responses │ │ │ └── ResponsesTestCase.java │ │ ├── schema │ │ │ ├── AbstractSchemaElementTestCase.java │ │ │ ├── AbstractSchemaTestCase.java │ │ │ ├── AbstractSubstringMatchingRuleImplTest.java │ │ │ ├── AbstractSyntaxTestCase.java │ │ │ ├── ApproximateMatchingRuleTest.java │ │ │ ├── AttributeTypeBuilderTestCase.java │ │ │ ├── AttributeTypeSyntaxTest.java │ │ │ ├── AttributeTypeTest.java │ │ │ ├── AuthPasswordSyntaxImplTest.java │ │ │ ├── BitStringEqualityMatchingRuleTest.java │ │ │ ├── BitStringSyntaxTest.java │ │ │ ├── BooleanEqualityMatchingRuleTest.java │ │ │ ├── BooleanSyntaxTest.java │ │ │ ├── CaseExactEqualityMatchingRuleTest.java │ │ │ ├── CaseExactIA5EqualityMatchingRuleTest.java │ │ │ ├── CaseExactIA5SubstringMatchingRuleTest.java │ │ │ ├── CaseExactOrderingMatchingRuleTest.java │ │ │ ├── CaseExactSubstringMatchingRuleTest.java │ │ │ ├── CaseIgnoreEqualityMatchingRuleTest.java │ │ │ ├── CaseIgnoreIA5EqualityMatchingRuleTest.java │ │ │ ├── CaseIgnoreIA5SubstringMatchingRuleTest.java │ │ │ ├── CaseIgnoreOrderingMatchingRuleTest.java │ │ │ ├── CaseIgnoreSubstringMatchingRuleTest.java │ │ │ ├── CertificateExactMatchingRuleImplTest.java │ │ │ ├── CertificateSyntaxTest.java │ │ │ ├── CollationEqualityMatchingRuleTest.java │ │ │ ├── CollationGreaterThanMatchingRuleTest.java │ │ │ ├── CollationGreaterThanOrEqualMatchingRuleTest.java │ │ │ ├── CollationLessThanMatchingRuleTest.java │ │ │ ├── CollationLessThanOrEqualMatchingRuleTest.java │ │ │ ├── CollationSubstringMatchingRuleTest.java │ │ │ ├── CoreSchemaTest.java │ │ │ ├── CountryStringSyntaxTest.java │ │ │ ├── DITContentRuleSyntaxTest.java │ │ │ ├── DITContentRuleTestCase.java │ │ │ ├── DITStructureRuleTestCase.java │ │ │ ├── DirectoryStringFirstComponentEqualityMatchingRuleTest.java │ │ │ ├── DistinguishedNameEqualityMatchingRuleTest.java │ │ │ ├── EntrySchemaCheckingTestCase.java │ │ │ ├── EnumSyntaxTestCase.java │ │ │ ├── GeneralizedTimeEqualityMatchingRuleTest.java │ │ │ ├── GeneralizedTimeOrderingMatchingRuleTest.java │ │ │ ├── GeneralizedTimeSyntaxTest.java │ │ │ ├── GuideSyntaxTest.java │ │ │ ├── IA5StringSyntaxTest.java │ │ │ ├── IntegerEqualityMatchingRuleTest.java │ │ │ ├── IntegerOrderingMatchingRuleTest.java │ │ │ ├── IntegerSyntaxTest.java │ │ │ ├── JPEGSyntaxTest.java │ │ │ ├── LDAPSyntaxTest.java │ │ │ ├── MatchingRuleSyntaxTest.java │ │ │ ├── MatchingRuleTest.java │ │ │ ├── MatchingRuleTestCase.java │ │ │ ├── MatchingRuleUseBuilderTestCase.java │ │ │ ├── MatchingRuleUseSyntaxTest.java │ │ │ ├── NameFormTestCase.java │ │ │ ├── NumericStringEqualityMatchingRuleTest.java │ │ │ ├── NumericStringOrderingMatchingRuleTest.java │ │ │ ├── NumericStringSubstringMatchingRuleTest.java │ │ │ ├── ObjectClassBuilderTestCase.java │ │ │ ├── ObjectClassTestCase.java │ │ │ ├── ObjectIdentifierEqualityMatchingRuleTest.java │ │ │ ├── ObjectIdentifierFirstComponentEqualityMatchingRuleTest.java │ │ │ ├── OrderingMatchingRuleTest.java │ │ │ ├── OtherMailboxSyntaxTest.java │ │ │ ├── PartialDateAndTimeMatchingRuleTestCase.java │ │ │ ├── PresentationAddressEqualityMatchingRuleTest.java │ │ │ ├── ProtocolInformationEqualityMatchingRuleTest.java │ │ │ ├── RegexSyntaxTestCase.java │ │ │ ├── RelativeTimeGreaterThanMatchingRuleTest.java │ │ │ ├── RelativeTimeLessThanMatchingRuleTest.java │ │ │ ├── SchemaBuilderTestCase.java │ │ │ ├── SchemaCompatTest.java │ │ │ ├── SchemaOptionsTestCase.java │ │ │ ├── SchemaTestCase.java │ │ │ ├── SchemaUtilsTest.java │ │ │ ├── SubstitutionSyntaxTestCase.java │ │ │ ├── SubstringMatchingRuleTest.java │ │ │ ├── SyntaxTestCase.java │ │ │ ├── TelephoneNumberSyntaxTest.java │ │ │ ├── TelexSyntaxTest.java │ │ │ ├── UTCTimeSyntaxTest.java │ │ │ ├── UUIDEqualityMatchingRuleTest.java │ │ │ ├── UUIDOrderingMatchingRuleTest.java │ │ │ ├── UUIDSyntaxTest.java │ │ │ ├── UniqueMemberEqualityMatchingRuleTest.java │ │ │ ├── UserPasswordExactEqualityMatchingRuleTest.java │ │ │ └── WordEqualityMatchingRuleTest.java │ │ └── spi │ │ │ ├── BasicLDAPConnectionFactory.java │ │ │ ├── BasicLDAPListener.java │ │ │ ├── BasicTransportProvider.java │ │ │ ├── ConnectionStateTest.java │ │ │ └── LDAPTestCase.java │ │ ├── ldif │ │ ├── AbstractLDIFTestCase.java │ │ ├── ConnectionChangeRecordWriterTestCase.java │ │ ├── ConnectionEntryReaderTestCase.java │ │ ├── ConnectionEntryWriterTestCase.java │ │ ├── EntryGeneratorTestCase.java │ │ ├── LDIFChangeRecordReaderTestCase.java │ │ ├── LDIFChangeRecordWriterTestCase.java │ │ ├── LDIFEntryReaderTestCase.java │ │ ├── LDIFEntryWriterTestCase.java │ │ ├── LDIFTestCase.java │ │ └── TemplateTagTestcase.java │ │ └── security │ │ ├── KeyProtectorTest.java │ │ ├── KeyStoreImplTest.java │ │ ├── KeyStoreObjectTest.java │ │ ├── KeyStoreTestUtils.java │ │ ├── OpenDJProviderSchemaTest.java │ │ └── OpenDJProviderTest.java │ └── resources │ ├── META-INF │ └── services │ │ └── org.forgerock.opendj.ldap.spi.TransportProvider │ ├── org.forgerock.opendj.ldap.TrustManagers │ ├── cert1.pem │ ├── cert10.pem │ ├── cert11.pem │ ├── cert12.pem │ ├── cert13.pem │ ├── cert2.pem │ ├── cert3.pem │ ├── cert4.pem │ ├── cert5.pem │ ├── cert6.pem │ ├── cert7.pem │ ├── cert8.pem │ └── cert9.pem │ └── org │ └── forgerock │ └── opendj │ └── security │ └── opendj-provider.conf ├── opendj-doc-generated-ref ├── pom.xml └── src │ └── main │ ├── ant │ └── zip.xml │ ├── asciidoc │ ├── admin-guide │ │ ├── chap-account-lockout.adoc │ │ ├── chap-admin-tools.adoc │ │ ├── chap-attribute-uniqueness.adoc │ │ ├── chap-backup-restore.adoc │ │ ├── chap-change-certs.adoc │ │ ├── chap-connection-handlers.adoc │ │ ├── chap-import-export.adoc │ │ ├── chap-indexing.adoc │ │ ├── chap-monitoring.adoc │ │ ├── chap-mv-servers.adoc │ │ ├── chap-privileges-acis.adoc │ │ ├── chap-production.adoc │ │ ├── chap-pta.adoc │ │ ├── chap-pwd-policy.adoc │ │ ├── chap-replication.adoc │ │ ├── chap-resource-limits.adoc │ │ ├── chap-samba.adoc │ │ ├── chap-schema.adoc │ │ ├── chap-server-process.adoc │ │ ├── chap-troubleshooting.adoc │ │ ├── chap-tuning.adoc │ │ ├── chap-understanding-ldap.adoc │ │ ├── index.adoc │ │ └── preface.adoc │ ├── attachments │ │ ├── Example.ldif │ │ └── captured-global-aci-edits.sh │ ├── images │ │ ├── JXplorer-dsml.png │ │ ├── Manage-Entries.png │ │ ├── Manage-Schema.png │ │ ├── OpenDJ-Control-Panel.png │ │ ├── create-vlv-index.png │ │ ├── custom-attrtype.png │ │ ├── custom-objclass.png │ │ ├── data-organization.png │ │ ├── equality-index.png │ │ ├── index-entry-limit.png │ │ ├── keystores.png │ │ ├── repl-topologies-right.png │ │ ├── repl-topologies-wrong.png │ │ ├── standalone-repl.png │ │ ├── thumb_JXplorer-dsml.png │ │ ├── thumb_Manage-Entries.png │ │ ├── thumb_Manage-Schema.png │ │ ├── thumb_OpenDJ-Control-Panel.png │ │ ├── thumb_create-vlv-index.png │ │ ├── thumb_custom-attrtype.png │ │ ├── thumb_custom-objclass.png │ │ ├── thumb_data-organization.png │ │ ├── thumb_equality-index.png │ │ ├── thumb_index-entry-limit.png │ │ ├── thumb_keystores.png │ │ ├── thumb_repl-topologies-right.png │ │ ├── thumb_repl-topologies-wrong.png │ │ └── thumb_standalone-repl.png │ ├── install-guide │ │ ├── chap-install.adoc │ │ ├── chap-uninstall.adoc │ │ ├── chap-upgrade.adoc │ │ ├── index.adoc │ │ └── preface.adoc │ ├── man-pages │ │ ├── _attributes.adoc │ │ ├── _backendstat-examples.adoc │ │ ├── _backup-examples.adoc │ │ ├── _base64-examples.adoc │ │ ├── _control-panel-examples.adoc │ │ ├── _create-rc-script-examples.adoc │ │ ├── _description-dsconfig-subcommands.adoc │ │ ├── _description-dsconfig.adoc │ │ ├── _description-psearch-info.adoc │ │ ├── _dsconfig-examples.adoc │ │ ├── _dsreplication-examples.adoc │ │ ├── _encode-password-examples.adoc │ │ ├── _exit-codes-0-1.adoc │ │ ├── _exit-codes-0-5-6-other.adoc │ │ ├── _exit-codes-0-80-89.adoc │ │ ├── _exit-codes-0-89.adoc │ │ ├── _exit-codes-0-gt0.adoc │ │ ├── _exit-codes-0-ldap-89.adoc │ │ ├── _export-ldif-examples.adoc │ │ ├── _files.adoc │ │ ├── _filters.adoc │ │ ├── _import-ldif-examples.adoc │ │ ├── _ldapcompare-examples.adoc │ │ ├── _ldapcompare-exit-codes.adoc │ │ ├── _ldapdelete-examples.adoc │ │ ├── _ldapmodify-examples.adoc │ │ ├── _ldappasswordmodify-examples.adoc │ │ ├── _ldapsearch-examples.adoc │ │ ├── _ldifdiff-examples.adoc │ │ ├── _ldifdiff-exit-codes.adoc │ │ ├── _ldifmodify-examples.adoc │ │ ├── _ldifsearch-examples.adoc │ │ ├── _list-backends-examples.adoc │ │ ├── _makeldif-examples.adoc │ │ ├── _makeldif-see-also.adoc │ │ ├── _manage-account-examples.adoc │ │ ├── _manage-tasks-examples.adoc │ │ ├── _rebuild-index-examples.adoc │ │ ├── _restore-examples.adoc │ │ ├── _setup-examples.adoc │ │ ├── _start-ds-examples.adoc │ │ ├── _status-examples.adoc │ │ ├── _stop-ds-examples.adoc │ │ ├── _uninstall-examples.adoc │ │ ├── _upgrade-exit-codes.adoc │ │ ├── _variablelist-ldap-controls.adoc │ │ ├── _verify-index-examples.adoc │ │ ├── _verify-index-exit-codes.adoc │ │ ├── man-dsjavaproperties.adoc │ │ ├── man-makeldif-template.adoc │ │ ├── man-opendj.adoc │ │ └── man-windows-service.adoc │ ├── reference │ │ ├── admin-tools-ref.adoc │ │ ├── appendix-controls.adoc │ │ ├── appendix-extended-ops.adoc │ │ ├── appendix-file-layout.adoc │ │ ├── appendix-interface-stability.adoc │ │ ├── appendix-l10n.adoc │ │ ├── appendix-ldap-result-codes.adoc │ │ ├── appendix-log-messages.adoc │ │ ├── appendix-ports-used.adoc │ │ ├── appendix-rest2ldap-3-0.adoc │ │ ├── appendix-rest2ldap.adoc │ │ ├── appendix-standards.adoc │ │ ├── dsconfig-subcommands-ref.adoc │ │ ├── glossary.adoc │ │ ├── index.adoc │ │ └── preface.adoc │ └── server-dev-guide │ │ ├── chap-groups.adoc │ │ ├── chap-ldap-operations.adoc │ │ ├── chap-referrals.adoc │ │ ├── chap-rest-operations-3-0.adoc │ │ ├── chap-rest-operations.adoc │ │ ├── chap-schema.adoc │ │ ├── chap-virtual-attrs-collective-attrs.adoc │ │ ├── chap-writing-plugins.adoc │ │ ├── index.adoc │ │ └── preface.adoc │ ├── assembly │ ├── config-ref-assembly.xml │ ├── generated-doc-sources-assembly.xml │ ├── sdk-tools-man-pages-assembly.xml │ ├── server-tools-man-page-sources-assembly.xml │ └── server-tools-man-pages-assembly.xml │ ├── docbkx │ ├── admin-guide │ │ ├── appendix-controls.xml │ │ ├── appendix-extended-ops.xml │ │ ├── appendix-file-layout.xml │ │ ├── appendix-interface-stability.xml │ │ ├── appendix-l10n.xml │ │ ├── appendix-ports-used.xml │ │ ├── appendix-rest2ldap.xml │ │ ├── appendix-standards.xml │ │ ├── chap-account-lockout.xml │ │ ├── chap-admin-tools.xml │ │ ├── chap-attribute-uniqueness.xml │ │ ├── chap-backup-restore.xml │ │ ├── chap-chaining.xml │ │ ├── chap-change-certs.xml │ │ ├── chap-connection-handlers.xml │ │ ├── chap-failover.xml │ │ ├── chap-groups.xml │ │ ├── chap-import-export.xml │ │ ├── chap-indexing.xml │ │ ├── chap-ldap-operations.xml │ │ ├── chap-load-balancing.xml │ │ ├── chap-monitoring.xml │ │ ├── chap-mv-servers.xml │ │ ├── chap-privileges-acis.xml │ │ ├── chap-pta.xml │ │ ├── chap-pwd-policy.xml │ │ ├── chap-referrals.xml │ │ ├── chap-replication.xml │ │ ├── chap-resource-limits.xml │ │ ├── chap-rest-operations.xml │ │ ├── chap-samba.xml │ │ ├── chap-schema.xml │ │ ├── chap-server-process.xml │ │ ├── chap-troubleshooting.xml │ │ ├── chap-tuning.xml │ │ ├── chap-virtual-attrs-collective-attrs.xml │ │ ├── images │ │ │ ├── JXplorer-dsml.png │ │ │ ├── Manage-Entries.png │ │ │ ├── Manage-Schema.png │ │ │ ├── OpenDJ-Control-Panel.png │ │ │ ├── create-vlv-index.png │ │ │ ├── custom-attrtype.png │ │ │ ├── custom-objclass.png │ │ │ ├── keystores.png │ │ │ ├── repl-topologies-right.png │ │ │ ├── repl-topologies-wrong.png │ │ │ ├── replA-monitor-repl.png │ │ │ ├── replA-setup.png │ │ │ ├── replB-data-repl.png │ │ │ ├── replB-global-admin.png │ │ │ ├── replB-setup.png │ │ │ └── standalone-repl.png │ │ ├── index.xml │ │ ├── man-ldapcompare.xml │ │ ├── man-ldapmodify.xml │ │ ├── man-ldappasswordmodify.xml │ │ ├── man-ldapsearch.xml │ │ ├── man-ldifmodify.xml │ │ ├── man-ldifsearch.xml │ │ └── preface.xml │ ├── dev-guide │ │ ├── chap-authenticating.xml │ │ ├── chap-best-practices.xml │ │ ├── chap-controls.xml │ │ ├── chap-extended-ops.xml │ │ ├── chap-get-sdk.xml │ │ ├── chap-getting-directory-info.xml │ │ ├── chap-i18n.xml │ │ ├── chap-ldif.xml │ │ ├── chap-reading.xml │ │ ├── chap-simple-proxy.xml │ │ ├── chap-understanding-ldap.xml │ │ ├── chap-using-the-sdk.xml │ │ ├── chap-writing.xml │ │ ├── images │ │ │ ├── data-organization.png │ │ │ ├── ldap-lifecycle.png │ │ │ └── ldap-tree.png │ │ ├── index.xml │ │ └── preface.xml │ ├── install-guide │ │ ├── chap-install-cli.xml │ │ ├── chap-install-gui.xml │ │ ├── chap-jvm-opts.xml │ │ ├── chap-uninstall.xml │ │ ├── chap-upgrade.xml │ │ ├── images │ │ │ ├── OpenDJ-Control-Panel.png │ │ │ ├── QuickSetup-finished.png │ │ │ ├── QuickSetup-gendata.png │ │ │ ├── QuickSetup-jvmopts.png │ │ │ ├── QuickSetup-license.png │ │ │ ├── QuickSetup-replopts.png │ │ │ ├── QuickSetup-review.png │ │ │ ├── QuickSetup-svrconf.png │ │ │ ├── QuickSetup-welcome.png │ │ │ ├── missing-java6.png │ │ │ ├── uninstall-finished.png │ │ │ └── uninstall-start.png │ │ ├── index.xml │ │ └── preface.xml │ ├── man-pages │ │ ├── README.md │ │ ├── addrate-examples.xml │ │ ├── attributes.xml │ │ ├── authrate-examples.xml │ │ ├── backendstat-examples.xml │ │ ├── backup-examples.xml │ │ ├── base64-examples.xml │ │ ├── control-panel-examples.xml │ │ ├── create-rc-script-examples.xml │ │ ├── description-dsconfig-subcommands.xml │ │ ├── description-dsconfig.xml │ │ ├── description-makeldif.xml │ │ ├── description-psearch-info.xml │ │ ├── description-rate-tools.xml │ │ ├── description-resource-path.xml │ │ ├── description-upgrade.xml │ │ ├── dsconfig-examples.xml │ │ ├── dsjavaproperties-examples.xml │ │ ├── dsjavaproperties-files.xml │ │ ├── dsreplication-examples.xml │ │ ├── encode-password-examples.xml │ │ ├── exit-codes-0-1.xml │ │ ├── exit-codes-0-5-6-other.xml │ │ ├── exit-codes-0-80-89.xml │ │ ├── exit-codes-0-89.xml │ │ ├── exit-codes-0-gt0.xml │ │ ├── exit-codes-0-ldap-89.xml │ │ ├── export-ldif-examples.xml │ │ ├── files.xml │ │ ├── filters.xml │ │ ├── import-ldif-examples.xml │ │ ├── index.xml │ │ ├── itemizedlist-duration.xml │ │ ├── ldapcompare-examples.xml │ │ ├── ldapcompare-exit-codes.xml │ │ ├── ldapdelete-examples.xml │ │ ├── ldapmodify-examples.xml │ │ ├── ldappasswordmodify-examples.xml │ │ ├── ldapsearch-examples.xml │ │ ├── ldifdiff-examples.xml │ │ ├── ldifdiff-exit-codes.xml │ │ ├── ldifmodify-examples.xml │ │ ├── ldifsearch-examples.xml │ │ ├── list-backends-examples.xml │ │ ├── makeldif-examples.xml │ │ ├── makeldif-see-also.xml │ │ ├── man-configure.xml │ │ ├── man-makeldif-template.xml │ │ ├── man-opendj.xml │ │ ├── man-windows-service.xml │ │ ├── manage-account-examples.xml │ │ ├── manage-tasks-examples.xml │ │ ├── modrate-examples.xml │ │ ├── rebuild-index-examples.xml │ │ ├── restore-examples.xml │ │ ├── searchrate-examples.xml │ │ ├── setup-examples.xml │ │ ├── start-ds-examples.xml │ │ ├── status-examples.xml │ │ ├── stop-ds-examples.xml │ │ ├── uninstall-examples.xml │ │ ├── upgrade-exit-codes.xml │ │ ├── variablelist-backendstat-index-status.xml │ │ ├── variablelist-ldap-controls.xml │ │ ├── verify-index-examples.xml │ │ └── verify-index-exit-codes.xml │ ├── release-notes │ │ ├── chap-before-you-install.xml │ │ ├── chap-compatibility.xml │ │ ├── chap-feedback.xml │ │ ├── chap-issues.xml │ │ ├── chap-support.xml │ │ ├── chap-update-install.xml │ │ ├── chap-whats-new.xml │ │ └── index.xml │ ├── sdk-release-notes │ │ ├── chap-before-you-install.xml │ │ ├── chap-compatibility.xml │ │ ├── chap-feedback.xml │ │ ├── chap-get-sdk.xml │ │ ├── chap-issues.xml │ │ ├── chap-support.xml │ │ ├── chap-whats-new.xml │ │ ├── index.xml │ │ └── resources │ │ │ └── maven-xml.txt │ └── shared │ │ ├── affiliation-fr.xml │ │ ├── glossary.xml │ │ ├── images │ │ └── forgerock-opendj-logo.png │ │ ├── itemizedlist-download.xml │ │ ├── man-authrate.xml │ │ ├── man-backup.xml │ │ ├── man-base64.xml │ │ ├── man-control-panel.xml │ │ ├── man-create-rc-script.xml │ │ ├── man-dbtest.xml │ │ ├── man-dsconfig.xml │ │ ├── man-dsframework.xml │ │ ├── man-dsjavaproperties.xml │ │ ├── man-dsreplication.xml │ │ ├── man-encode-password.xml │ │ ├── man-export-ldif.xml │ │ ├── man-import-ldif.xml │ │ ├── man-ldapcompare.xml │ │ ├── man-ldapdelete.xml │ │ ├── man-ldapmodify.xml │ │ ├── man-ldappasswordmodify.xml │ │ ├── man-ldapsearch.xml │ │ ├── man-ldif-diff.xml │ │ ├── man-ldifdiff.xml │ │ ├── man-ldifmodify.xml │ │ ├── man-ldifsearch.xml │ │ ├── man-list-backends.xml │ │ ├── man-make-ldif-template.xml │ │ ├── man-make-ldif.xml │ │ ├── man-manage-account.xml │ │ ├── man-manage-tasks.xml │ │ ├── man-modrate.xml │ │ ├── man-rebuild-index.xml │ │ ├── man-restore.xml │ │ ├── man-searchrate.xml │ │ ├── man-setup.xml │ │ ├── man-start-ds.xml │ │ ├── man-status.xml │ │ ├── man-stop-ds.xml │ │ ├── man-uninstall.xml │ │ ├── man-upgrade.xml │ │ ├── man-verify-index.xml │ │ ├── mediaobject-fr-logo.xml │ │ ├── screen-upgrade.xml │ │ ├── sec-accessing-doc-online.xml │ │ ├── sec-formatting-conventions.xml │ │ ├── sec-interface-stability.xml │ │ ├── sec-joining-the-community.xml │ │ ├── sec-release-levels.xml │ │ └── table-filter-operators.xml │ └── resources │ └── asciidoc │ └── extensions │ └── nested-open-block.rb ├── opendj-doc-maven-plugin ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ ├── forgerock │ │ └── opendj │ │ │ └── maven │ │ │ └── doc │ │ │ ├── CommandLineTool.java │ │ │ ├── GenerateConfigurationReferenceMojo.java │ │ │ ├── GenerateGlobalAcisTableMojo.java │ │ │ ├── GenerateMessageFileMojo.java │ │ │ ├── GenerateRefEntriesMojo.java │ │ │ ├── GenerateResultCodeDocMojo.java │ │ │ ├── GenerateSchemaDocMojo.java │ │ │ ├── Utils.java │ │ │ └── package-info.java │ │ └── openidentityplatform │ │ └── opendj │ │ └── maven │ │ └── doc │ │ └── AsciidocConverterUtils.java │ └── resources │ ├── config-ref │ ├── duration-syntax.html │ ├── opendj-config.css │ ├── opendj_logo_sm.png │ ├── pageaction.gif │ ├── tab_deselected.jpg │ └── tab_selected.gif │ ├── org │ └── forgerock │ │ └── opendj │ │ └── maven │ │ └── doc │ │ └── docs.properties │ └── templates │ ├── appendix-ldap-result-codes.ftl │ ├── log-message-reference.ftl │ ├── sec-locales-subtypes.ftl │ └── table-global-acis.ftl ├── opendj-dsml-servlet ├── legal-notices │ └── THIRDPARTYREADME.txt ├── pom.xml ├── resources │ ├── schema │ │ ├── DSMLv2.xsd │ │ └── bindings.xjb │ └── webapp │ │ ├── sun-web.xml │ │ └── web.xml └── src │ ├── license │ └── THIRD-PARTY.properties │ └── main │ └── java │ └── org │ └── opends │ └── dsml │ └── protocol │ ├── ByteStringUtility.java │ ├── DSMLAbandonOperation.java │ ├── DSMLAddOperation.java │ ├── DSMLCompareOperation.java │ ├── DSMLDeleteOperation.java │ ├── DSMLExtendedOperation.java │ ├── DSMLModifyDNOperation.java │ ├── DSMLModifyOperation.java │ ├── DSMLSearchOperation.java │ ├── DSMLServlet.java │ ├── ResultCodeFactory.java │ └── package-info.java ├── opendj-embedded-server-examples ├── README ├── pom.xml └── src │ ├── main │ ├── assembly │ │ └── examples.xml │ ├── java │ │ └── org │ │ │ └── forgerock │ │ │ └── opendj │ │ │ └── examples │ │ │ ├── ConfigureServer.java │ │ │ ├── SetupServer.java │ │ │ ├── StartStopServer.java │ │ │ └── package-info.java │ └── javadoc │ │ └── overview.html │ └── site │ ├── site.xml │ └── xdoc │ └── index.xml.vm ├── opendj-embedded ├── pom.xml └── src │ ├── main │ └── java │ │ └── org │ │ └── openidentityplatform │ │ └── opendj │ │ └── embedded │ │ ├── Config.java │ │ └── EmbeddedOpenDJ.java │ └── test │ ├── java │ └── org │ │ └── openidentityplatform │ │ └── opendj │ │ └── embedded │ │ └── EmbeddedOpenDJTest.java │ └── resources │ ├── logback-test.xml │ └── opendj │ ├── 99-users.ldif │ └── data.ldif ├── opendj-grizzly ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── com │ │ │ └── forgerock │ │ │ │ └── opendj │ │ │ │ └── grizzly │ │ │ │ ├── GrizzlyTransportProvider.java │ │ │ │ └── package-info.java │ │ └── org │ │ │ ├── forgerock │ │ │ └── opendj │ │ │ │ └── grizzly │ │ │ │ ├── ASN1BufferReader.java │ │ │ │ ├── ASN1BufferWriter.java │ │ │ │ ├── ConnectionSecurityLayerFilter.java │ │ │ │ ├── DefaultTCPNIOTransport.java │ │ │ │ ├── GrizzlyLDAPConnection.java │ │ │ │ ├── GrizzlyLDAPConnectionFactory.java │ │ │ │ ├── GrizzlyLDAPListener.java │ │ │ │ ├── GrizzlyUtils.java │ │ │ │ ├── LDAPBaseFilter.java │ │ │ │ ├── LDAPClientFilter.java │ │ │ │ ├── LDAPServerFilter.java │ │ │ │ ├── LdapCodec.java │ │ │ │ ├── LdapResponseMessageWriter.java │ │ │ │ ├── SaslFilter.java │ │ │ │ ├── ServerTCPNIOTransport.java │ │ │ │ ├── StartTLSFilter.java │ │ │ │ └── package-info.java │ │ │ └── openidentityplatform │ │ │ └── rxjava3 │ │ │ └── internal │ │ │ └── util │ │ │ └── BackpressureHelper.java │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.forgerock.opendj.ldap.spi.TransportProvider │ │ └── com │ │ └── forgerock │ │ └── opendj │ │ └── grizzly │ │ └── grizzly.properties │ ├── site │ └── xdoc │ │ └── index.xml.vm │ └── test │ └── java │ └── org │ └── forgerock │ └── opendj │ └── grizzly │ ├── ASN1BufferReaderTestCase.java │ ├── ASN1BufferWriterTestCase.java │ ├── ConnectionFactoryTestCase.java │ ├── DefaultTCPNIOTransportTestCase.java │ ├── GrizzlyLDAPConnectionFactoryTestCase.java │ ├── GrizzlyLDAPConnectionTestCase.java │ ├── GrizzlyLDAPListenerTestCase.java │ ├── GrizzlyLDAPReaderWriterTestCase.java │ └── GrizzlyUtilsTestCase.java ├── opendj-ldap-sdk-examples ├── pom.xml └── src │ ├── main │ ├── assembly │ │ └── examples.xml │ ├── java │ │ └── org │ │ │ └── forgerock │ │ │ └── opendj │ │ │ └── examples │ │ │ ├── Controls.java │ │ │ ├── ExtendedOperations.java │ │ │ ├── GetADChangeNotifications.java │ │ │ ├── GetInfo.java │ │ │ ├── Modify.java │ │ │ ├── ModifyAsync.java │ │ │ ├── ParseAttributes.java │ │ │ ├── PasswordResetForAD.java │ │ │ ├── Proxy.java │ │ │ ├── ProxyBackend.java │ │ │ ├── ReadSchema.java │ │ │ ├── RewriterProxy.java │ │ │ ├── SASLAuth.java │ │ │ ├── Search.java │ │ │ ├── SearchAsync.java │ │ │ ├── SearchBind.java │ │ │ ├── SearchBindAsync.java │ │ │ ├── Server.java │ │ │ ├── ShortLife.java │ │ │ ├── ShortLifeAsync.java │ │ │ ├── SimpleAuth.java │ │ │ ├── SimpleAuthAsync.java │ │ │ ├── UpdateGroup.java │ │ │ ├── UpdateGroupAsync.java │ │ │ ├── UseGenericControl.java │ │ │ ├── UseSchema.java │ │ │ ├── UseSchemaAsync.java │ │ │ └── package-info.java │ └── javadoc │ │ └── overview.html │ ├── site │ ├── site.xml │ └── xdoc │ │ └── index.xml.vm │ └── test │ └── bin │ └── checkRewriterProxy.sh ├── opendj-ldap-toolkit ├── README ├── legal-notices │ └── THIRDPARTYREADME.txt ├── pom.xml └── src │ ├── main │ ├── assembly │ │ ├── bat │ │ │ ├── addrate.bat │ │ │ ├── authrate.bat │ │ │ ├── base64.bat │ │ │ ├── ldapcompare.bat │ │ │ ├── ldapdelete.bat │ │ │ ├── ldapmodify.bat │ │ │ ├── ldappasswordmodify.bat │ │ │ ├── ldapsearch.bat │ │ │ ├── ldifdiff.bat │ │ │ ├── ldifmodify.bat │ │ │ ├── ldifsearch.bat │ │ │ ├── makeldif.bat │ │ │ ├── modrate.bat │ │ │ └── searchrate.bat │ │ ├── bin │ │ │ ├── addrate │ │ │ ├── authrate │ │ │ ├── base64 │ │ │ ├── ldapcompare │ │ │ ├── ldapdelete │ │ │ ├── ldapmodify │ │ │ ├── ldappasswordmodify │ │ │ ├── ldapsearch │ │ │ ├── ldifdiff │ │ │ ├── ldifmodify │ │ │ ├── ldifsearch │ │ │ ├── makeldif │ │ │ ├── modrate │ │ │ └── searchrate │ │ ├── descriptor.xml │ │ ├── libbat │ │ │ ├── _client-script.bat │ │ │ ├── _script-util.bat │ │ │ └── setcp.bat │ │ └── libbin │ │ │ ├── _client-script.sh │ │ │ └── _script-util.sh │ ├── java │ │ └── com │ │ │ └── forgerock │ │ │ └── opendj │ │ │ └── ldap │ │ │ └── tools │ │ │ ├── AddRate.java │ │ │ ├── AuthRate.java │ │ │ ├── Base64.java │ │ │ ├── DataSource.java │ │ │ ├── LDAPCompare.java │ │ │ ├── LDAPDelete.java │ │ │ ├── LDAPModify.java │ │ │ ├── LDAPPasswordModify.java │ │ │ ├── LDAPSearch.java │ │ │ ├── LDAPToolArgumentParser.java │ │ │ ├── LDAPToolException.java │ │ │ ├── LDIFDiff.java │ │ │ ├── LDIFModify.java │ │ │ ├── LDIFSearch.java │ │ │ ├── MakeLDIF.java │ │ │ ├── ModRate.java │ │ │ ├── PerformanceRunner.java │ │ │ ├── PerformanceRunnerOptions.java │ │ │ ├── SearchRate.java │ │ │ ├── StatsThread.java │ │ │ ├── ToolConsoleApplication.java │ │ │ ├── Utils.java │ │ │ └── package-info.java │ └── resources │ │ └── com │ │ └── forgerock │ │ └── opendj │ │ └── ldap │ │ └── tools │ │ ├── tools.properties │ │ ├── tools_ca_ES.properties │ │ ├── tools_de.properties │ │ ├── tools_es.properties │ │ ├── tools_fr.properties │ │ ├── tools_ja.properties │ │ ├── tools_ko.properties │ │ ├── tools_pl.properties │ │ ├── tools_zh_CN.properties │ │ └── tools_zh_TW.properties │ ├── site │ └── xdoc │ │ └── index.xml.vm │ └── test │ ├── java │ └── com │ │ └── forgerock │ │ └── opendj │ │ └── ldap │ │ └── tools │ │ ├── AddRateITCase.java │ │ ├── ArgumentParserToolsTestCase.java │ │ ├── AuthRateITCase.java │ │ ├── Base64TestCase.java │ │ ├── ConnectionFactoryProviderTest.java │ │ ├── LDAPCompareITCase.java │ │ ├── LDAPCompareTestCase.java │ │ ├── LDAPDeleteTestCase.java │ │ ├── LDAPModifyTestCase.java │ │ ├── LDAPPasswordModifyTestCase.java │ │ ├── LDAPSearchITCase.java │ │ ├── LDAPSearchTestCase.java │ │ ├── LDAPToolsTestCase.java │ │ ├── LDIFDiffTestCase.java │ │ ├── LDIFModifyTestCase.java │ │ ├── LDIFSearchTestCase.java │ │ ├── MakeLDIFITCase.java │ │ ├── ToolLdapServer.java │ │ ├── ToolsITCase.java │ │ ├── ToolsTestCase.java │ │ └── ToolsTestUtils.java │ └── resources │ ├── dummy-truststore │ ├── expected_output.ldif │ ├── expected_output_80_column.ldif │ ├── invalid_test_template.ldif │ ├── ldifdiff │ ├── diff-emptytosingle.ldif │ ├── diff-multipleentries-ignore-attributes.ldif │ ├── diff-multipleentries-ignore-entries.ldif │ ├── diff-multipleentries-reverse-singlevalue.ldif │ ├── diff-multipleentries-reverse.ldif │ ├── diff-multipleentries-singlevalue.ldif │ ├── diff-multipleentries.ldif │ ├── diff-multipletosingle-reverse-singlevalue.ldif │ ├── diff-multipletosingle-reverse.ldif │ ├── diff-multipletosingle.ldif │ ├── diff-nochanges.ldif │ ├── diff-singleentry-reverse.ldif │ ├── diff-singleentry.ldif │ ├── diff-singletoempty.ldif │ ├── diff-singletomultiple-no-wrapping.ldif │ ├── diff-singletomultiple-reverse.ldif │ ├── diff-singletomultiple-singlevalue.ldif │ ├── diff-singletomultiple.ldif │ ├── ignore-attributes │ ├── ignore-entries │ ├── source-empty.ldif │ ├── source-multipleentries.ldif │ ├── source-singleentry.ldif │ ├── target-empty.ldif │ ├── target-multipleentries.ldif │ └── target-singleentry.ldif │ ├── ldifmodify │ ├── expected-continue-on-error.ldif │ ├── expected-no-wrapping.ldif │ ├── expected.ldif │ ├── modifications-invalid.ldif │ ├── modifications-with-error.ldif │ ├── modifications.ldif │ ├── modifications_part_1.ldif │ ├── modifications_part_2.ldif │ ├── modifications_part_3.ldif │ └── source.ldif │ ├── ldifsearch.ldif │ └── valid_test_template.ldif ├── opendj-legacy ├── pom.xml └── src │ └── main │ └── java │ └── org │ └── opends │ ├── legacy │ ├── DummyByteArrayComparator.java │ └── package-info.java │ └── server │ ├── api │ ├── OrderingMatchingRule.java │ └── package-info.java │ ├── backends │ └── jeb │ │ ├── AttributeIndex.java │ │ ├── VLVKeyComparator.java │ │ └── package-info.java │ ├── replication │ └── plugin │ │ ├── HistoricalCsnOrderingMatchingRule.java │ │ └── package-info.java │ └── schema │ ├── AuthPasswordExactEqualityMatchingRule.java │ ├── BitStringEqualityMatchingRule.java │ ├── BooleanEqualityMatchingRule.java │ ├── CaseExactEqualityMatchingRule.java │ ├── CaseExactIA5EqualityMatchingRule.java │ ├── CaseExactIA5SubstringMatchingRule.java │ ├── CaseExactOrderingMatchingRule.java │ ├── CaseExactSubstringMatchingRule.java │ ├── CaseIgnoreEqualityMatchingRule.java │ ├── CaseIgnoreIA5EqualityMatchingRule.java │ ├── CaseIgnoreIA5SubstringMatchingRule.java │ ├── CaseIgnoreListEqualityMatchingRule.java │ ├── CaseIgnoreListSubstringMatchingRule.java │ ├── CaseIgnoreOrderingMatchingRule.java │ ├── CaseIgnoreSubstringMatchingRule.java │ ├── CertificateExactMatchingRule.java │ ├── DirectoryStringFirstComponentEqualityMatchingRule.java │ ├── DistinguishedNameEqualityMatchingRule.java │ ├── DoubleMetaphoneApproximateMatchingRule.java │ ├── GeneralizedTimeEqualityMatchingRule.java │ ├── GeneralizedTimeOrderingMatchingRule.java │ ├── IntegerEqualityMatchingRule.java │ ├── IntegerFirstComponentEqualityMatchingRule.java │ ├── IntegerOrderingMatchingRule.java │ ├── KeywordEqualityMatchingRule.java │ ├── NumericStringEqualityMatchingRule.java │ ├── NumericStringOrderingMatchingRule.java │ ├── NumericStringSubstringMatchingRule.java │ ├── ObjectIdentifierEqualityMatchingRule.java │ ├── ObjectIdentifierFirstComponentEqualityMatchingRule.java │ ├── OctetStringEqualityMatchingRule.java │ ├── OctetStringOrderingMatchingRule.java │ ├── OctetStringSubstringMatchingRule.java │ ├── PresentationAddressEqualityMatchingRule.java │ ├── ProtocolInformationEqualityMatchingRule.java │ ├── TelephoneNumberEqualityMatchingRule.java │ ├── TelephoneNumberSubstringMatchingRule.java │ ├── UUIDEqualityMatchingRule.java │ ├── UUIDOrderingMatchingRule.java │ ├── UniqueMemberEqualityMatchingRule.java │ ├── UserPasswordExactEqualityMatchingRule.java │ ├── WordEqualityMatchingRule.java │ └── package-info.java ├── opendj-maven-plugin ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── forgerock │ │ └── opendj │ │ └── maven │ │ ├── ConcatSchemaMojo.java │ │ ├── GenerateConfigMojo.java │ │ ├── GenerateManifestClassPathMojo.java │ │ └── package-info.java │ └── resources │ └── config │ ├── stylesheets │ ├── abbreviations.xsl │ ├── admin-cli.xsd │ ├── admin-ldap.xsd │ ├── admin-preprocessor.xsd │ ├── admin.xsd │ ├── catalog.xml │ ├── cliMOProfile.xsl │ ├── clientMO.xsl │ ├── conditions.xsl │ ├── java-utilities.xsl │ ├── ldapMOProfile.xsl │ ├── manifestMO.xsl │ ├── messagesMO.xsl │ ├── metaMO.xsl │ ├── package-info.xsl │ ├── preprocessor.xsl │ ├── property-types.xsl │ ├── property-types │ │ ├── aci.xsl │ │ ├── aggregation.xsl │ │ ├── attribute-type.xsl │ │ ├── boolean.xsl │ │ ├── dn.xsl │ │ ├── duration.xsl │ │ ├── enumeration.xsl │ │ ├── extensible-matching-rule-type.xsl │ │ ├── integer.xsl │ │ ├── ip-address-mask.xsl │ │ ├── ip-address.xsl │ │ ├── java-class.xsl │ │ ├── oid.xsl │ │ ├── password.xsl │ │ ├── size.xsl │ │ └── string.xsl │ ├── serverMO.xsl │ ├── text-utilities.xsl │ └── xml.xsd │ └── xml │ └── org │ └── forgerock │ └── opendj │ └── server │ └── config │ ├── AESPasswordStorageSchemeConfiguration.xml │ ├── AccessControlHandlerConfiguration.xml │ ├── AccessLogFilteringCriteriaConfiguration.xml │ ├── AccessLogPublisherConfiguration.xml │ ├── AccountStatusNotificationHandlerConfiguration.xml │ ├── AdminEndpointConfiguration.xml │ ├── AdministrationConnectorConfiguration.xml │ ├── AlertHandlerConfiguration.xml │ ├── AnonymousSASLMechanismHandlerConfiguration.xml │ ├── AttributeCleanupPluginConfiguration.xml │ ├── AttributeValuePasswordValidatorConfiguration.xml │ ├── AuthenticationPolicyConfiguration.xml │ ├── BackendConfiguration.xml │ ├── BackendIndexConfiguration.xml │ ├── BackendVLVIndexConfiguration.xml │ ├── BackupBackendConfiguration.xml │ ├── Base64PasswordStorageSchemeConfiguration.xml │ ├── BcryptPasswordStorageSchemeConfiguration.xml │ ├── BlindTrustManagerProviderConfiguration.xml │ ├── BlowfishPasswordStorageSchemeConfiguration.xml │ ├── CASBackendConfiguration.xml │ ├── CancelExtendedOperationHandlerConfiguration.xml │ ├── CertificateMapperConfiguration.xml │ ├── ChangeNumberControlPluginConfiguration.xml │ ├── CharacterSetPasswordValidatorConfiguration.xml │ ├── ClearPasswordStorageSchemeConfiguration.xml │ ├── ClientConnectionMonitorProviderConfiguration.xml │ ├── CollectiveAttributeSubentriesVirtualAttributeConfiguration.xml │ ├── ConnectionHandlerConfiguration.xml │ ├── CoreSchemaConfiguration.xml │ ├── CramMD5SASLMechanismHandlerConfiguration.xml │ ├── CryptPasswordStorageSchemeConfiguration.xml │ ├── CryptoManagerConfiguration.xml │ ├── CsvFileAccessLogPublisherConfiguration.xml │ ├── CsvFileHTTPAccessLogPublisherConfiguration.xml │ ├── DebugLogPublisherConfiguration.xml │ ├── DebugTargetConfiguration.xml │ ├── DictionaryPasswordValidatorConfiguration.xml │ ├── DigestMD5SASLMechanismHandlerConfiguration.xml │ ├── DseeCompatAccessControlHandlerConfiguration.xml │ ├── DynamicGroupImplementationConfiguration.xml │ ├── EndTransactionExtendedOperationHandlerConfiguration.xml │ ├── EntityTagVirtualAttributeConfiguration.xml │ ├── EntryCacheConfiguration.xml │ ├── EntryCacheMonitorProviderConfiguration.xml │ ├── EntryDNVirtualAttributeConfiguration.xml │ ├── EntryUUIDPluginConfiguration.xml │ ├── EntryUUIDVirtualAttributeConfiguration.xml │ ├── ErrorLogAccountStatusNotificationHandlerConfiguration.xml │ ├── ErrorLogPublisherConfiguration.xml │ ├── ExactMatchIdentityMapperConfiguration.xml │ ├── ExtendedOperationHandlerConfiguration.xml │ ├── ExternalAccessLogPublisherConfiguration.xml │ ├── ExternalChangelogDomainConfiguration.xml │ ├── ExternalHTTPAccessLogPublisherConfiguration.xml │ ├── ExternalSASLMechanismHandlerConfiguration.xml │ ├── FIFOEntryCacheConfiguration.xml │ ├── FileBasedAccessLogPublisherConfiguration.xml │ ├── FileBasedAuditLogPublisherConfiguration.xml │ ├── FileBasedDebugLogPublisherConfiguration.xml │ ├── FileBasedErrorLogPublisherConfiguration.xml │ ├── FileBasedHTTPAccessLogPublisherConfiguration.xml │ ├── FileBasedKeyManagerProviderConfiguration.xml │ ├── FileBasedTrustManagerProviderConfiguration.xml │ ├── FileCountLogRetentionPolicyConfiguration.xml │ ├── FingerprintCertificateMapperConfiguration.xml │ ├── FixedTimeLogRotationPolicyConfiguration.xml │ ├── FractionalLDIFImportPluginConfiguration.xml │ ├── FreeDiskSpaceLogRetentionPolicyConfiguration.xml │ ├── GSSAPISASLMechanismHandlerConfiguration.xml │ ├── GetConnectionIdExtendedOperationHandlerConfiguration.xml │ ├── GetSymmetricKeyExtendedOperationHandlerConfiguration.xml │ ├── GlobalConfiguration.xml │ ├── GoverningStructureRuleVirtualAttributeConfiguration.xml │ ├── GroupImplementationConfiguration.xml │ ├── HTTPAccessLogPublisherConfiguration.xml │ ├── HTTPAnonymousAuthorizationMechanismConfiguration.xml │ ├── HTTPAuthorizationMechanismConfiguration.xml │ ├── HTTPBasicAuthorizationMechanismConfiguration.xml │ ├── HTTPConnectionHandlerConfiguration.xml │ ├── HTTPEndpointConfiguration.xml │ ├── HTTPOauth2AuthorizationMechanismConfiguration.xml │ ├── HTTPOauth2CtsAuthorizationMechanismConfiguration.xml │ ├── HTTPOauth2FileAuthorizationMechanismConfiguration.xml │ ├── HTTPOauth2OpenamAuthorizationMechanismConfiguration.xml │ ├── HTTPOauth2TokenIntrospectionAuthorizationMechanismConfiguration.xml │ ├── HasSubordinatesVirtualAttributeConfiguration.xml │ ├── IdentityMapperConfiguration.xml │ ├── IsMemberOfVirtualAttributeConfiguration.xml │ ├── JDBCBackendConfiguration.xml │ ├── JEBackendConfiguration.xml │ ├── JMXAlertHandlerConfiguration.xml │ ├── JMXConnectionHandlerConfiguration.xml │ ├── JsonFileAccessLogPublisherConfiguration.xml │ ├── JsonFileHTTPAccessLogPublisherConfiguration.xml │ ├── JsonSchemaConfiguration.xml │ ├── KeyManagerProviderConfiguration.xml │ ├── LDAPAttributeDescriptionListPluginConfiguration.xml │ ├── LDAPConnectionHandlerConfiguration.xml │ ├── LDAPKeyManagerProviderConfiguration.xml │ ├── LDAPPassThroughAuthenticationPolicyConfiguration.xml │ ├── LDAPTrustManagerProviderConfiguration.xml │ ├── LDIFBackendConfiguration.xml │ ├── LDIFConnectionHandlerConfiguration.xml │ ├── LastModPluginConfiguration.xml │ ├── LengthBasedPasswordValidatorConfiguration.xml │ ├── LocalBackendConfiguration.xml │ ├── LogPublisherConfiguration.xml │ ├── LogRetentionPolicyConfiguration.xml │ ├── LogRotationPolicyConfiguration.xml │ ├── MD5PasswordStorageSchemeConfiguration.xml │ ├── MemberVirtualAttributeConfiguration.xml │ ├── MemoryBackendConfiguration.xml │ ├── MemoryUsageMonitorProviderConfiguration.xml │ ├── MonitorBackendConfiguration.xml │ ├── MonitorProviderConfiguration.xml │ ├── NullBackendConfiguration.xml │ ├── NumSubordinatesVirtualAttributeConfiguration.xml │ ├── PBKDF2HmacSHA256PasswordStorageSchemeConfiguration.xml │ ├── PBKDF2HmacSHA512PasswordStorageSchemeConfiguration.xml │ ├── PBKDF2PasswordStorageSchemeConfiguration.xml │ ├── PDBBackendConfiguration.xml │ ├── PKCS11KeyManagerProviderConfiguration.xml │ ├── PKCS11TrustManagerProviderConfiguration.xml │ ├── PKCS5S2PasswordStorageSchemeConfiguration.xml │ ├── Package.xml │ ├── ParallelWorkQueueConfiguration.xml │ ├── PasswordExpirationTimeVirtualAttributeConfiguration.xml │ ├── PasswordGeneratorConfiguration.xml │ ├── PasswordModifyExtendedOperationHandlerConfiguration.xml │ ├── PasswordPolicyConfiguration.xml │ ├── PasswordPolicyImportPluginConfiguration.xml │ ├── PasswordPolicyStateExtendedOperationHandlerConfiguration.xml │ ├── PasswordPolicySubentryVirtualAttributeConfiguration.xml │ ├── PasswordStorageSchemeConfiguration.xml │ ├── PasswordValidatorConfiguration.xml │ ├── PlainSASLMechanismHandlerConfiguration.xml │ ├── PluggableBackendConfiguration.xml │ ├── PluginConfiguration.xml │ ├── PluginRootConfiguration.xml │ ├── ProfilerPluginConfiguration.xml │ ├── RC4PasswordStorageSchemeConfiguration.xml │ ├── RandomPasswordGeneratorConfiguration.xml │ ├── ReferentialIntegrityPluginConfiguration.xml │ ├── RegularExpressionIdentityMapperConfiguration.xml │ ├── RepeatedCharactersPasswordValidatorConfiguration.xml │ ├── ReplicationDomainConfiguration.xml │ ├── ReplicationServerConfiguration.xml │ ├── ReplicationServiceDiscoveryMechanismConfiguration.xml │ ├── ReplicationSynchronizationProviderConfiguration.xml │ ├── Rest2ldapEndpointConfiguration.xml │ ├── RootConfiguration.xml │ ├── RootDNConfiguration.xml │ ├── RootDNUserConfiguration.xml │ ├── RootDSEBackendConfiguration.xml │ ├── SASLMechanismHandlerConfiguration.xml │ ├── SHA1PasswordStorageSchemeConfiguration.xml │ ├── SMTPAccountStatusNotificationHandlerConfiguration.xml │ ├── SMTPAlertHandlerConfiguration.xml │ ├── SNMPConnectionHandlerConfiguration.xml │ ├── SaltedMD5PasswordStorageSchemeConfiguration.xml │ ├── SaltedSHA1PasswordStorageSchemeConfiguration.xml │ ├── SaltedSHA256PasswordStorageSchemeConfiguration.xml │ ├── SaltedSHA384PasswordStorageSchemeConfiguration.xml │ ├── SaltedSHA512PasswordStorageSchemeConfiguration.xml │ ├── SambaPasswordPluginConfiguration.xml │ ├── SchemaBackendConfiguration.xml │ ├── SchemaProviderConfiguration.xml │ ├── ServiceDiscoveryMechanismConfiguration.xml │ ├── SevenBitCleanPluginConfiguration.xml │ ├── SimilarityBasedPasswordValidatorConfiguration.xml │ ├── SizeLimitLogRetentionPolicyConfiguration.xml │ ├── SizeLimitLogRotationPolicyConfiguration.xml │ ├── SoftReferenceEntryCacheConfiguration.xml │ ├── StackTraceMonitorProviderConfiguration.xml │ ├── StartTLSExtendedOperationHandlerConfiguration.xml │ ├── StartTransactionExtendedOperationHandlerConfiguration.xml │ ├── StaticGroupImplementationConfiguration.xml │ ├── StaticServiceDiscoveryMechanismConfiguration.xml │ ├── StructuralObjectClassVirtualAttributeConfiguration.xml │ ├── SubjectAttributeToUserAttributeCertificateMapperConfiguration.xml │ ├── SubjectDNToUserAttributeCertificateMapperConfiguration.xml │ ├── SubjectEqualsDNCertificateMapperConfiguration.xml │ ├── SubschemaSubentryVirtualAttributeConfiguration.xml │ ├── SynchronizationProviderConfiguration.xml │ ├── SystemInfoMonitorProviderConfiguration.xml │ ├── TaskBackendConfiguration.xml │ ├── TimeLimitLogRotationPolicyConfiguration.xml │ ├── TraditionalWorkQueueConfiguration.xml │ ├── TripleDESPasswordStorageSchemeConfiguration.xml │ ├── TrustManagerProviderConfiguration.xml │ ├── TrustStoreBackendConfiguration.xml │ ├── UniqueAttributePluginConfiguration.xml │ ├── UniqueCharactersPasswordValidatorConfiguration.xml │ ├── UserDefinedVirtualAttributeConfiguration.xml │ ├── VersionMonitorProviderConfiguration.xml │ ├── VirtualAttributeConfiguration.xml │ ├── VirtualStaticGroupImplementationConfiguration.xml │ ├── WhoAmIExtendedOperationHandlerConfiguration.xml │ └── WorkQueueConfiguration.xml ├── opendj-openidm-account-change-notification-handler ├── .gitignore ├── legal-notices │ └── THIRDPARTYREADME.txt ├── pom.xml └── src │ ├── license │ └── THIRD-PARTY.properties │ ├── main │ ├── assembly │ │ ├── config │ │ │ ├── openidm-accountchange-plugin-sample-config │ │ │ └── schema │ │ │ │ └── 90-openidm-accountchange-plugin.ldif │ │ └── descriptor.xml │ ├── java │ │ └── org │ │ │ └── forgerock │ │ │ └── openidm │ │ │ └── accountchange │ │ │ ├── OpenidmAccountStatusNotificationHandler.java │ │ │ ├── OpenidmAccountStatusNotificationHandlerConfiguration.xml │ │ │ ├── Package.xml │ │ │ ├── PersistedQueue.java │ │ │ └── package-info.java │ └── resources │ │ └── org │ │ └── forgerock │ │ └── openidm │ │ └── accountchange │ │ └── openidm-account-status-notification-handler.properties │ └── site │ └── xdoc │ └── index.xml.vm ├── opendj-packages ├── opendj-deb │ ├── opendj-deb-standard │ │ ├── pom.xml │ │ └── resources │ │ │ └── copyright │ ├── pom.xml │ └── resources │ │ ├── changelog │ │ └── control │ │ ├── control │ │ ├── postinst │ │ ├── postrm │ │ ├── preinst │ │ └── prerm ├── opendj-docker │ ├── Dockerfile │ ├── Dockerfile-alpine │ ├── README.md │ ├── bootstrap │ │ ├── replicate.sh │ │ └── setup.sh │ ├── pom.xml │ └── run.sh ├── opendj-msi │ ├── opendj-msi-standard │ │ ├── pom.xml │ │ └── resources │ │ │ └── msi │ │ │ ├── opendjbanner.bmp │ │ │ ├── opendjdialog.bmp │ │ │ └── package.wxs │ └── pom.xml ├── opendj-openshift-template │ ├── README.md │ └── opendj-openshift-template.yaml ├── opendj-rpm │ ├── opendj-rpm-standard │ │ └── pom.xml │ ├── pom.xml │ └── resources │ │ ├── changelog │ │ └── specs │ │ ├── clean.sh │ │ ├── postinstall.sh │ │ ├── postuninstall.sh │ │ ├── preinstall.sh │ │ └── preuninstall.sh ├── opendj-svr4 │ ├── opendj-svr4-standard │ │ ├── pom.xml │ │ └── resources │ │ │ ├── build-svr4.xml │ │ │ └── svr4 │ │ │ └── OpenDJ │ │ │ ├── README │ │ │ ├── _svc-opendj.sh │ │ │ ├── copyright │ │ │ ├── install.html │ │ │ ├── install.txt │ │ │ ├── layout.xml │ │ │ └── opendj-manifest.xml │ └── pom.xml ├── pom.xml └── resources │ └── sysv │ └── opendj ├── opendj-rest2ldap-servlet ├── legal-notices │ └── THIRDPARTYREADME.txt ├── pom.xml └── src │ ├── main │ └── webapp │ │ └── WEB-INF │ │ ├── classes │ │ ├── config.json │ │ ├── logging.properties │ │ └── rest2ldap │ │ │ ├── endpoints │ │ │ └── api │ │ │ │ └── example-v1.json │ │ │ └── rest2ldap.json │ │ └── web.xml │ └── site │ └── xdoc │ └── index.xml.vm ├── opendj-rest2ldap ├── README ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── forgerock │ │ │ └── opendj │ │ │ └── rest2ldap │ │ │ ├── AbstractLdapPropertyMapper.java │ │ │ ├── AbstractRequestHandler.java │ │ │ ├── Action.java │ │ │ ├── AuthenticatedConnectionContext.java │ │ │ ├── DescribableRequestHandler.java │ │ │ ├── DnTemplate.java │ │ │ ├── ErrorLoggerFilter.java │ │ │ ├── FilterType.java │ │ │ ├── JsonConstantPropertyMapper.java │ │ │ ├── JsonPropertyMapper.java │ │ │ ├── NamingStrategy.java │ │ │ ├── ObjectPropertyMapper.java │ │ │ ├── PropertyMapper.java │ │ │ ├── ReadOnUpdatePolicy.java │ │ │ ├── ReadOnlyRequestHandler.java │ │ │ ├── ReferencePropertyMapper.java │ │ │ ├── Resource.java │ │ │ ├── ResourceTypePropertyMapper.java │ │ │ ├── Rest2Ldap.java │ │ │ ├── Rest2LdapContext.java │ │ │ ├── Rest2LdapHttpApplication.java │ │ │ ├── Rest2LdapJsonConfigurator.java │ │ │ ├── RoutingContext.java │ │ │ ├── SimplePropertyMapper.java │ │ │ ├── SubResource.java │ │ │ ├── SubResourceCollection.java │ │ │ ├── SubResourceImpl.java │ │ │ ├── SubResourceSingleton.java │ │ │ ├── Utils.java │ │ │ ├── WritabilityPolicy.java │ │ │ ├── authz │ │ │ ├── AbstractAsynchronousConnectionDecorator.java │ │ │ ├── AuthenticationStrategies.java │ │ │ ├── AuthenticationStrategy.java │ │ │ ├── Authorization.java │ │ │ ├── AuthorizationFilter.java │ │ │ ├── AuthzIdTemplate.java │ │ │ ├── CachedReadConnectionDecorator.java │ │ │ ├── ConditionalFilters.java │ │ │ ├── CredentialExtractors.java │ │ │ ├── CtsAccessTokenResolver.java │ │ │ ├── DirectConnectionFilter.java │ │ │ ├── FileAccessTokenResolver.java │ │ │ ├── HttpBasicAuthenticationFilter.java │ │ │ ├── ProxiedAuthV2Filter.java │ │ │ ├── Rfc7662AccessTokenResolver.java │ │ │ ├── SaslPlainStrategy.java │ │ │ ├── SearchThenBindStrategy.java │ │ │ ├── SimpleBindStrategy.java │ │ │ ├── Utils.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── schema │ │ │ ├── JsonQueryEqualityMatchingRuleImpl.java │ │ │ ├── JsonQuerySyntaxImpl.java │ │ │ ├── JsonSchema.java │ │ │ ├── JsonSyntaxImpl.java │ │ │ └── package-info.java │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.forgerock.http.HttpApplication │ │ └── org │ │ └── forgerock │ │ └── opendj │ │ └── rest2ldap │ │ ├── rest2ldap.properties │ │ ├── rest2ldap_ca_ES.properties │ │ ├── rest2ldap_de.properties │ │ ├── rest2ldap_es.properties │ │ ├── rest2ldap_fr.properties │ │ ├── rest2ldap_ja.properties │ │ ├── rest2ldap_ko.properties │ │ ├── rest2ldap_pl.properties │ │ ├── rest2ldap_zh_CN.properties │ │ └── rest2ldap_zh_TW.properties │ ├── site │ └── xdoc │ │ └── index.xml.vm │ └── test │ └── java │ └── org │ └── forgerock │ └── opendj │ └── rest2ldap │ ├── AuthorizationTestCase.java │ ├── BasicRequestsTest.java │ ├── DnTemplateTest.java │ ├── JsonPropertyMapperTest.java │ ├── OAuth2JsonConfigurationTestCase.java │ ├── Rest2LdapJsonConfiguratorTest.java │ ├── Rest2LdapTest.java │ ├── TestUtils.java │ ├── authz │ ├── AuthzIdTemplateTest.java │ ├── CredentialExtractorsTest.java │ ├── CtsAccessTokenResolverTestCase.java │ ├── DirectConnectionFilterTest.java │ ├── HttpBasicAuthenticationFilterTest.java │ ├── ProxiedAuthV2FilterTest.java │ └── Rfc7662AccessResolverTestCase.java │ └── schema │ ├── JsonQueryEqualityMatchingRuleImplTest.java │ ├── JsonQuerySyntaxImplTest.java │ └── JsonSyntaxImplTest.java ├── opendj-server-example-plugin ├── README.example.plugin ├── pom.xml └── src │ ├── license │ └── THIRD-PARTY.properties │ ├── main │ ├── assembly │ │ ├── config │ │ │ ├── example-plugin.ldif │ │ │ └── schema │ │ │ │ └── 99-example-plugin.ldif │ │ └── descriptor.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── opendj │ │ │ ├── ExamplePlugin.java │ │ │ ├── ExamplePluginConfiguration.xml │ │ │ ├── Package.xml │ │ │ └── package-info.java │ └── resources │ │ └── com │ │ └── example │ │ └── opendj │ │ ├── example_plugin.properties │ │ └── example_plugin_fr.properties │ └── site │ └── xdoc │ └── index.xml.vm ├── opendj-server-legacy ├── build.properties ├── doc │ └── README.txt ├── legal-notices │ └── THIRDPARTYREADME.txt ├── lib │ ├── launcher_administrator.exe │ ├── opendj_service.exe │ └── winlauncher.exe ├── opendjbackground.png ├── opendjsplash.png ├── opendmk │ ├── jdmkrt.jar │ └── jdmktk.jar ├── pom.xml ├── replace.rb ├── resource │ ├── FindJavaHome.class │ ├── FindJavaHome.java │ ├── Messages.java.stub │ ├── README │ ├── bin │ │ ├── _client-script.bat │ │ ├── _client-script.sh │ │ ├── _mixed-script.bat │ │ ├── _mixed-script.sh │ │ ├── _script-util.bat │ │ ├── _script-util.sh │ │ ├── _server-script.bat │ │ ├── _server-script.sh │ │ ├── backendstat │ │ ├── backendstat.bat │ │ ├── backup │ │ ├── backup.bat │ │ ├── control-panel │ │ ├── control-panel.bat │ │ ├── create-rc-script │ │ ├── dsconfig │ │ ├── dsconfig.bat │ │ ├── dsreplication │ │ ├── dsreplication.bat │ │ ├── encode-password │ │ ├── encode-password.bat │ │ ├── export-ldif │ │ ├── export-ldif.bat │ │ ├── import-ldif │ │ ├── import-ldif.bat │ │ ├── list-backends │ │ ├── list-backends.bat │ │ ├── manage-account │ │ ├── manage-account.bat │ │ ├── manage-tasks │ │ ├── manage-tasks.bat │ │ ├── rebuild-index │ │ ├── rebuild-index.bat │ │ ├── restore │ │ ├── restore.bat │ │ ├── setcp.bat │ │ ├── start-ds │ │ ├── start-ds.bat │ │ ├── status │ │ ├── status.bat │ │ ├── stop-ds │ │ ├── stop-ds.bat │ │ ├── verify-index │ │ ├── verify-index.bat │ │ └── windows-service.bat │ ├── config │ │ ├── admin-backend.ldif │ │ ├── audit-handlers │ │ │ ├── elasticsearch-config.json-example │ │ │ ├── elasticsearch-index-setup-example.json │ │ │ ├── jdbc-config.json-example │ │ │ ├── jms-config.json-example │ │ │ ├── mysql_tables-example.sql │ │ │ ├── oracle_tables-example.sql │ │ │ ├── splunk-config.json-example │ │ │ └── syslog-config.json-example │ │ ├── config.ldif │ │ ├── java.properties │ │ ├── rest2ldap │ │ │ └── endpoints │ │ │ │ └── api │ │ │ │ └── example-v1.json │ │ ├── tools.properties │ │ └── wordlist.txt │ ├── images │ │ └── opendj_logo.png │ ├── log-message-reference.xml │ ├── mac │ │ ├── ControlPanel.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── universalJavaApplicationStub │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ └── OpenDJ.icns │ │ ├── QuickSetup.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── universalJavaApplicationStub │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ └── OpenDJ_Inst.icns │ │ └── Uninstall.app │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── universalJavaApplicationStub │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ └── OpenDJ_Uninst.icns │ ├── messages │ │ ├── account-disabled.template │ │ ├── account-enabled.template │ │ ├── account-expired.template │ │ ├── account-idle-locked.template │ │ ├── account-permanently-locked.template │ │ ├── account-reset-locked.template │ │ ├── account-temporarily-locked.template │ │ ├── account-unlocked.template │ │ ├── password-changed.template │ │ ├── password-expired.template │ │ ├── password-expiring.template │ │ └── password-reset.template │ ├── schema │ │ ├── 00-core.ldif │ │ ├── 01-pwpolicy.ldif │ │ ├── 02-config.ldif │ │ ├── 03-changelog.ldif │ │ ├── 03-keystore.ldif │ │ ├── 03-pwpolicyextension.ldif │ │ ├── 03-rfc2713.ldif │ │ ├── 03-rfc2714.ldif │ │ ├── 03-rfc2739.ldif │ │ ├── 03-rfc2926.ldif │ │ ├── 03-rfc3112.ldif │ │ ├── 03-rfc3712.ldif │ │ ├── 03-uddiv3.ldif │ │ ├── 04-rfc2307bis.ldif │ │ ├── 05-rfc4876.ldif │ │ ├── 05-samba.ldif │ │ ├── 05-solaris.ldif │ │ ├── 06-compat.ldif │ │ └── 99-msad.ldif │ ├── setup │ ├── setup.bat │ ├── uninstall │ ├── uninstall.bat │ ├── upgrade │ └── upgrade.bat ├── src │ ├── admin │ │ └── messages │ │ │ ├── AESPasswordStorageSchemeCfgDefn.properties │ │ │ ├── AESPasswordStorageSchemeCfgDefn_de.properties │ │ │ ├── AESPasswordStorageSchemeCfgDefn_es.properties │ │ │ ├── AESPasswordStorageSchemeCfgDefn_fr.properties │ │ │ ├── AESPasswordStorageSchemeCfgDefn_ja.properties │ │ │ ├── AESPasswordStorageSchemeCfgDefn_ko.properties │ │ │ ├── AESPasswordStorageSchemeCfgDefn_zh_CN.properties │ │ │ ├── AESPasswordStorageSchemeCfgDefn_zh_TW.properties │ │ │ ├── AccessControlHandlerCfgDefn.properties │ │ │ ├── AccessControlHandlerCfgDefn_ca_ES.properties │ │ │ ├── AccessControlHandlerCfgDefn_de.properties │ │ │ ├── AccessControlHandlerCfgDefn_es.properties │ │ │ ├── AccessControlHandlerCfgDefn_fr.properties │ │ │ ├── AccessControlHandlerCfgDefn_ja.properties │ │ │ ├── AccessControlHandlerCfgDefn_ko.properties │ │ │ ├── AccessControlHandlerCfgDefn_pl.properties │ │ │ ├── AccessControlHandlerCfgDefn_zh_CN.properties │ │ │ ├── AccessControlHandlerCfgDefn_zh_TW.properties │ │ │ ├── AccessLogFilteringCriteriaCfgDefn.properties │ │ │ ├── AccessLogPublisherCfgDefn.properties │ │ │ ├── AccessLogPublisherCfgDefn_de.properties │ │ │ ├── AccessLogPublisherCfgDefn_es.properties │ │ │ ├── AccessLogPublisherCfgDefn_fr.properties │ │ │ ├── AccessLogPublisherCfgDefn_ja.properties │ │ │ ├── AccessLogPublisherCfgDefn_ko.properties │ │ │ ├── AccessLogPublisherCfgDefn_zh_CN.properties │ │ │ ├── AccessLogPublisherCfgDefn_zh_TW.properties │ │ │ ├── AccountStatusNotificationHandlerCfgDefn.properties │ │ │ ├── AccountStatusNotificationHandlerCfgDefn_ca_ES.properties │ │ │ ├── AccountStatusNotificationHandlerCfgDefn_de.properties │ │ │ ├── AccountStatusNotificationHandlerCfgDefn_es.properties │ │ │ ├── AccountStatusNotificationHandlerCfgDefn_fr.properties │ │ │ ├── AccountStatusNotificationHandlerCfgDefn_ja.properties │ │ │ ├── AccountStatusNotificationHandlerCfgDefn_ko.properties │ │ │ ├── AccountStatusNotificationHandlerCfgDefn_pl.properties │ │ │ ├── AccountStatusNotificationHandlerCfgDefn_zh_CN.properties │ │ │ ├── AccountStatusNotificationHandlerCfgDefn_zh_TW.properties │ │ │ ├── AdministrationConnectorCfgDefn.properties │ │ │ ├── AdministrationConnectorCfgDefn_ca_ES.properties │ │ │ ├── AdministrationConnectorCfgDefn_de.properties │ │ │ ├── AdministrationConnectorCfgDefn_es.properties │ │ │ ├── AdministrationConnectorCfgDefn_fr.properties │ │ │ ├── AdministrationConnectorCfgDefn_ja.properties │ │ │ ├── AdministrationConnectorCfgDefn_ko.properties │ │ │ ├── AdministrationConnectorCfgDefn_pl.properties │ │ │ ├── AdministrationConnectorCfgDefn_zh_CN.properties │ │ │ ├── AdministrationConnectorCfgDefn_zh_TW.properties │ │ │ ├── AlertHandlerCfgDefn.properties │ │ │ ├── AlertHandlerCfgDefn_ca_ES.properties │ │ │ ├── AlertHandlerCfgDefn_de.properties │ │ │ ├── AlertHandlerCfgDefn_es.properties │ │ │ ├── AlertHandlerCfgDefn_fr.properties │ │ │ ├── AlertHandlerCfgDefn_ja.properties │ │ │ ├── AlertHandlerCfgDefn_ko.properties │ │ │ ├── AlertHandlerCfgDefn_pl.properties │ │ │ ├── AlertHandlerCfgDefn_zh_CN.properties │ │ │ ├── AlertHandlerCfgDefn_zh_TW.properties │ │ │ ├── AnonymousSASLMechanismHandlerCfgDefn.properties │ │ │ ├── AnonymousSASLMechanismHandlerCfgDefn_de.properties │ │ │ ├── AnonymousSASLMechanismHandlerCfgDefn_es.properties │ │ │ ├── AnonymousSASLMechanismHandlerCfgDefn_fr.properties │ │ │ ├── AnonymousSASLMechanismHandlerCfgDefn_ja.properties │ │ │ ├── AnonymousSASLMechanismHandlerCfgDefn_ko.properties │ │ │ ├── AnonymousSASLMechanismHandlerCfgDefn_zh_CN.properties │ │ │ ├── AnonymousSASLMechanismHandlerCfgDefn_zh_TW.properties │ │ │ ├── ApproximateMatchingRuleCfgDefn.properties │ │ │ ├── ApproximateMatchingRuleCfgDefn_de.properties │ │ │ ├── ApproximateMatchingRuleCfgDefn_es.properties │ │ │ ├── ApproximateMatchingRuleCfgDefn_fr.properties │ │ │ ├── ApproximateMatchingRuleCfgDefn_ja.properties │ │ │ ├── ApproximateMatchingRuleCfgDefn_ko.properties │ │ │ ├── ApproximateMatchingRuleCfgDefn_zh_CN.properties │ │ │ ├── ApproximateMatchingRuleCfgDefn_zh_TW.properties │ │ │ ├── AttributeCleanupPluginCfgDefn.properties │ │ │ ├── AttributeSyntaxCfgDefn.properties │ │ │ ├── AttributeSyntaxCfgDefn_ca_ES.properties │ │ │ ├── AttributeSyntaxCfgDefn_de.properties │ │ │ ├── AttributeSyntaxCfgDefn_es.properties │ │ │ ├── AttributeSyntaxCfgDefn_fr.properties │ │ │ ├── AttributeSyntaxCfgDefn_ja.properties │ │ │ ├── AttributeSyntaxCfgDefn_ko.properties │ │ │ ├── AttributeSyntaxCfgDefn_pl.properties │ │ │ ├── AttributeSyntaxCfgDefn_zh_CN.properties │ │ │ ├── AttributeSyntaxCfgDefn_zh_TW.properties │ │ │ ├── AttributeTypeDescriptionAttributeSyntaxCfgDefn.properties │ │ │ ├── AttributeTypeDescriptionAttributeSyntaxCfgDefn_de.properties │ │ │ ├── AttributeTypeDescriptionAttributeSyntaxCfgDefn_es.properties │ │ │ ├── AttributeTypeDescriptionAttributeSyntaxCfgDefn_fr.properties │ │ │ ├── AttributeTypeDescriptionAttributeSyntaxCfgDefn_ja.properties │ │ │ ├── AttributeTypeDescriptionAttributeSyntaxCfgDefn_ko.properties │ │ │ ├── AttributeTypeDescriptionAttributeSyntaxCfgDefn_zh_CN.properties │ │ │ ├── AttributeTypeDescriptionAttributeSyntaxCfgDefn_zh_TW.properties │ │ │ ├── AttributeValuePasswordValidatorCfgDefn.properties │ │ │ ├── AttributeValuePasswordValidatorCfgDefn_de.properties │ │ │ ├── AttributeValuePasswordValidatorCfgDefn_es.properties │ │ │ ├── AttributeValuePasswordValidatorCfgDefn_fr.properties │ │ │ ├── AttributeValuePasswordValidatorCfgDefn_ja.properties │ │ │ ├── AttributeValuePasswordValidatorCfgDefn_ko.properties │ │ │ ├── AttributeValuePasswordValidatorCfgDefn_pl.properties │ │ │ ├── AttributeValuePasswordValidatorCfgDefn_zh_CN.properties │ │ │ ├── AttributeValuePasswordValidatorCfgDefn_zh_TW.properties │ │ │ ├── AuthenticationPolicyCfgDefn.properties │ │ │ ├── BackendCfgDefn.properties │ │ │ ├── BackendCfgDefn_ca_ES.properties │ │ │ ├── BackendCfgDefn_de.properties │ │ │ ├── BackendCfgDefn_es.properties │ │ │ ├── BackendCfgDefn_fr.properties │ │ │ ├── BackendCfgDefn_ja.properties │ │ │ ├── BackendCfgDefn_ko.properties │ │ │ ├── BackendCfgDefn_pl.properties │ │ │ ├── BackendCfgDefn_zh_CN.properties │ │ │ ├── BackendCfgDefn_zh_TW.properties │ │ │ ├── BackendIndexCfgDefn.properties │ │ │ ├── BackendVLVIndexCfgDefn.properties │ │ │ ├── BackupBackendCfgDefn.properties │ │ │ ├── BackupBackendCfgDefn_de.properties │ │ │ ├── BackupBackendCfgDefn_es.properties │ │ │ ├── BackupBackendCfgDefn_fr.properties │ │ │ ├── BackupBackendCfgDefn_ja.properties │ │ │ ├── BackupBackendCfgDefn_ko.properties │ │ │ ├── BackupBackendCfgDefn_zh_CN.properties │ │ │ ├── BackupBackendCfgDefn_zh_TW.properties │ │ │ ├── Base64PasswordStorageSchemeCfgDefn.properties │ │ │ ├── Base64PasswordStorageSchemeCfgDefn_de.properties │ │ │ ├── Base64PasswordStorageSchemeCfgDefn_es.properties │ │ │ ├── Base64PasswordStorageSchemeCfgDefn_fr.properties │ │ │ ├── Base64PasswordStorageSchemeCfgDefn_ja.properties │ │ │ ├── Base64PasswordStorageSchemeCfgDefn_ko.properties │ │ │ ├── Base64PasswordStorageSchemeCfgDefn_zh_CN.properties │ │ │ ├── Base64PasswordStorageSchemeCfgDefn_zh_TW.properties │ │ │ ├── BlindTrustManagerProviderCfgDefn.properties │ │ │ ├── BlindTrustManagerProviderCfgDefn_de.properties │ │ │ ├── BlindTrustManagerProviderCfgDefn_es.properties │ │ │ ├── BlindTrustManagerProviderCfgDefn_fr.properties │ │ │ ├── BlindTrustManagerProviderCfgDefn_ja.properties │ │ │ ├── BlindTrustManagerProviderCfgDefn_ko.properties │ │ │ ├── BlindTrustManagerProviderCfgDefn_zh_CN.properties │ │ │ ├── BlindTrustManagerProviderCfgDefn_zh_TW.properties │ │ │ ├── BlowfishPasswordStorageSchemeCfgDefn.properties │ │ │ ├── BlowfishPasswordStorageSchemeCfgDefn_de.properties │ │ │ ├── BlowfishPasswordStorageSchemeCfgDefn_es.properties │ │ │ ├── BlowfishPasswordStorageSchemeCfgDefn_fr.properties │ │ │ ├── BlowfishPasswordStorageSchemeCfgDefn_ja.properties │ │ │ ├── BlowfishPasswordStorageSchemeCfgDefn_ko.properties │ │ │ ├── BlowfishPasswordStorageSchemeCfgDefn_zh_CN.properties │ │ │ ├── BlowfishPasswordStorageSchemeCfgDefn_zh_TW.properties │ │ │ ├── CancelExtendedOperationHandlerCfgDefn.properties │ │ │ ├── CancelExtendedOperationHandlerCfgDefn_de.properties │ │ │ ├── CancelExtendedOperationHandlerCfgDefn_es.properties │ │ │ ├── CancelExtendedOperationHandlerCfgDefn_fr.properties │ │ │ ├── CancelExtendedOperationHandlerCfgDefn_ja.properties │ │ │ ├── CancelExtendedOperationHandlerCfgDefn_ko.properties │ │ │ ├── CancelExtendedOperationHandlerCfgDefn_zh_CN.properties │ │ │ ├── CancelExtendedOperationHandlerCfgDefn_zh_TW.properties │ │ │ ├── CertificateAttributeSyntaxCfgDefn.properties │ │ │ ├── CertificateMapperCfgDefn.properties │ │ │ ├── CertificateMapperCfgDefn_ca_ES.properties │ │ │ ├── CertificateMapperCfgDefn_de.properties │ │ │ ├── CertificateMapperCfgDefn_es.properties │ │ │ ├── CertificateMapperCfgDefn_fr.properties │ │ │ ├── CertificateMapperCfgDefn_ja.properties │ │ │ ├── CertificateMapperCfgDefn_ko.properties │ │ │ ├── CertificateMapperCfgDefn_pl.properties │ │ │ ├── CertificateMapperCfgDefn_zh_CN.properties │ │ │ ├── CertificateMapperCfgDefn_zh_TW.properties │ │ │ ├── ChangeNumberControlPluginCfgDefn.properties │ │ │ ├── ChangeNumberControlPluginCfgDefn_de.properties │ │ │ ├── ChangeNumberControlPluginCfgDefn_es.properties │ │ │ ├── ChangeNumberControlPluginCfgDefn_fr.properties │ │ │ ├── ChangeNumberControlPluginCfgDefn_ja.properties │ │ │ ├── ChangeNumberControlPluginCfgDefn_ko.properties │ │ │ ├── ChangeNumberControlPluginCfgDefn_pl.properties │ │ │ ├── ChangeNumberControlPluginCfgDefn_zh_CN.properties │ │ │ ├── ChangeNumberControlPluginCfgDefn_zh_TW.properties │ │ │ ├── CharacterSetPasswordValidatorCfgDefn.properties │ │ │ ├── CharacterSetPasswordValidatorCfgDefn_de.properties │ │ │ ├── CharacterSetPasswordValidatorCfgDefn_es.properties │ │ │ ├── CharacterSetPasswordValidatorCfgDefn_fr.properties │ │ │ ├── CharacterSetPasswordValidatorCfgDefn_ja.properties │ │ │ ├── CharacterSetPasswordValidatorCfgDefn_ko.properties │ │ │ ├── CharacterSetPasswordValidatorCfgDefn_pl.properties │ │ │ ├── CharacterSetPasswordValidatorCfgDefn_zh_CN.properties │ │ │ ├── CharacterSetPasswordValidatorCfgDefn_zh_TW.properties │ │ │ ├── ClearPasswordStorageSchemeCfgDefn.properties │ │ │ ├── ClearPasswordStorageSchemeCfgDefn_de.properties │ │ │ ├── ClearPasswordStorageSchemeCfgDefn_es.properties │ │ │ ├── ClearPasswordStorageSchemeCfgDefn_fr.properties │ │ │ ├── ClearPasswordStorageSchemeCfgDefn_ja.properties │ │ │ ├── ClearPasswordStorageSchemeCfgDefn_ko.properties │ │ │ ├── ClearPasswordStorageSchemeCfgDefn_zh_CN.properties │ │ │ ├── ClearPasswordStorageSchemeCfgDefn_zh_TW.properties │ │ │ ├── ClientConnectionMonitorProviderCfgDefn.properties │ │ │ ├── ClientConnectionMonitorProviderCfgDefn_de.properties │ │ │ ├── ClientConnectionMonitorProviderCfgDefn_es.properties │ │ │ ├── ClientConnectionMonitorProviderCfgDefn_fr.properties │ │ │ ├── ClientConnectionMonitorProviderCfgDefn_ja.properties │ │ │ ├── ClientConnectionMonitorProviderCfgDefn_ko.properties │ │ │ ├── ClientConnectionMonitorProviderCfgDefn_pl.properties │ │ │ ├── ClientConnectionMonitorProviderCfgDefn_zh_CN.properties │ │ │ ├── ClientConnectionMonitorProviderCfgDefn_zh_TW.properties │ │ │ ├── CollationMatchingRuleCfgDefn.properties │ │ │ ├── CollationMatchingRuleCfgDefn_de.properties │ │ │ ├── CollationMatchingRuleCfgDefn_es.properties │ │ │ ├── CollationMatchingRuleCfgDefn_fr.properties │ │ │ ├── CollationMatchingRuleCfgDefn_ja.properties │ │ │ ├── CollationMatchingRuleCfgDefn_ko.properties │ │ │ ├── CollationMatchingRuleCfgDefn_zh_CN.properties │ │ │ ├── CollationMatchingRuleCfgDefn_zh_TW.properties │ │ │ ├── CollectiveAttributeSubentriesVirtualAttributeCfgDefn.properties │ │ │ ├── CollectiveAttributeSubentriesVirtualAttributeCfgDefn_de.properties │ │ │ ├── CollectiveAttributeSubentriesVirtualAttributeCfgDefn_es.properties │ │ │ ├── CollectiveAttributeSubentriesVirtualAttributeCfgDefn_fr.properties │ │ │ ├── CollectiveAttributeSubentriesVirtualAttributeCfgDefn_ja.properties │ │ │ ├── CollectiveAttributeSubentriesVirtualAttributeCfgDefn_zh_CN.properties │ │ │ ├── ConfigFileHandlerBackendCfgDefn.properties │ │ │ ├── ConfigFileHandlerBackendCfgDefn_de.properties │ │ │ ├── ConfigFileHandlerBackendCfgDefn_es.properties │ │ │ ├── ConfigFileHandlerBackendCfgDefn_fr.properties │ │ │ ├── ConfigFileHandlerBackendCfgDefn_ja.properties │ │ │ ├── ConfigFileHandlerBackendCfgDefn_ko.properties │ │ │ ├── ConfigFileHandlerBackendCfgDefn_zh_CN.properties │ │ │ ├── ConfigFileHandlerBackendCfgDefn_zh_TW.properties │ │ │ ├── ConnectionHandlerCfgDefn.properties │ │ │ ├── ConnectionHandlerCfgDefn_ca_ES.properties │ │ │ ├── ConnectionHandlerCfgDefn_de.properties │ │ │ ├── ConnectionHandlerCfgDefn_es.properties │ │ │ ├── ConnectionHandlerCfgDefn_fr.properties │ │ │ ├── ConnectionHandlerCfgDefn_ja.properties │ │ │ ├── ConnectionHandlerCfgDefn_ko.properties │ │ │ ├── ConnectionHandlerCfgDefn_pl.properties │ │ │ ├── ConnectionHandlerCfgDefn_zh_CN.properties │ │ │ ├── ConnectionHandlerCfgDefn_zh_TW.properties │ │ │ ├── CoreSchemaCfgDefn.properties │ │ │ ├── CountryStringAttributeSyntaxCfgDefn.properties │ │ │ ├── CramMD5SASLMechanismHandlerCfgDefn.properties │ │ │ ├── CramMD5SASLMechanismHandlerCfgDefn_de.properties │ │ │ ├── CramMD5SASLMechanismHandlerCfgDefn_es.properties │ │ │ ├── CramMD5SASLMechanismHandlerCfgDefn_fr.properties │ │ │ ├── CramMD5SASLMechanismHandlerCfgDefn_ja.properties │ │ │ ├── CramMD5SASLMechanismHandlerCfgDefn_ko.properties │ │ │ ├── CramMD5SASLMechanismHandlerCfgDefn_zh_CN.properties │ │ │ ├── CramMD5SASLMechanismHandlerCfgDefn_zh_TW.properties │ │ │ ├── CryptPasswordStorageSchemeCfgDefn.properties │ │ │ ├── CryptPasswordStorageSchemeCfgDefn_de.properties │ │ │ ├── CryptPasswordStorageSchemeCfgDefn_es.properties │ │ │ ├── CryptPasswordStorageSchemeCfgDefn_fr.properties │ │ │ ├── CryptPasswordStorageSchemeCfgDefn_ja.properties │ │ │ ├── CryptPasswordStorageSchemeCfgDefn_ko.properties │ │ │ ├── CryptPasswordStorageSchemeCfgDefn_zh_CN.properties │ │ │ ├── CryptPasswordStorageSchemeCfgDefn_zh_TW.properties │ │ │ ├── CryptoManagerCfgDefn.properties │ │ │ ├── CryptoManagerCfgDefn_ca_ES.properties │ │ │ ├── CryptoManagerCfgDefn_de.properties │ │ │ ├── CryptoManagerCfgDefn_es.properties │ │ │ ├── CryptoManagerCfgDefn_fr.properties │ │ │ ├── CryptoManagerCfgDefn_ja.properties │ │ │ ├── CryptoManagerCfgDefn_ko.properties │ │ │ ├── CryptoManagerCfgDefn_pl.properties │ │ │ ├── CryptoManagerCfgDefn_zh_CN.properties │ │ │ ├── CryptoManagerCfgDefn_zh_TW.properties │ │ │ ├── DebugLogPublisherCfgDefn.properties │ │ │ ├── DebugLogPublisherCfgDefn_ca_ES.properties │ │ │ ├── DebugLogPublisherCfgDefn_de.properties │ │ │ ├── DebugLogPublisherCfgDefn_es.properties │ │ │ ├── DebugLogPublisherCfgDefn_fr.properties │ │ │ ├── DebugLogPublisherCfgDefn_ja.properties │ │ │ ├── DebugLogPublisherCfgDefn_ko.properties │ │ │ ├── DebugLogPublisherCfgDefn_pl.properties │ │ │ ├── DebugLogPublisherCfgDefn_zh_CN.properties │ │ │ ├── DebugLogPublisherCfgDefn_zh_TW.properties │ │ │ ├── DebugTargetCfgDefn.properties │ │ │ ├── DebugTargetCfgDefn_ca_ES.properties │ │ │ ├── DebugTargetCfgDefn_de.properties │ │ │ ├── DebugTargetCfgDefn_es.properties │ │ │ ├── DebugTargetCfgDefn_fr.properties │ │ │ ├── DebugTargetCfgDefn_ja.properties │ │ │ ├── DebugTargetCfgDefn_ko.properties │ │ │ ├── DebugTargetCfgDefn_pl.properties │ │ │ ├── DebugTargetCfgDefn_zh_CN.properties │ │ │ ├── DebugTargetCfgDefn_zh_TW.properties │ │ │ ├── DictionaryPasswordValidatorCfgDefn.properties │ │ │ ├── DictionaryPasswordValidatorCfgDefn_de.properties │ │ │ ├── DictionaryPasswordValidatorCfgDefn_es.properties │ │ │ ├── DictionaryPasswordValidatorCfgDefn_fr.properties │ │ │ ├── DictionaryPasswordValidatorCfgDefn_ja.properties │ │ │ ├── DictionaryPasswordValidatorCfgDefn_ko.properties │ │ │ ├── DictionaryPasswordValidatorCfgDefn_pl.properties │ │ │ ├── DictionaryPasswordValidatorCfgDefn_zh_CN.properties │ │ │ ├── DictionaryPasswordValidatorCfgDefn_zh_TW.properties │ │ │ ├── DigestMD5SASLMechanismHandlerCfgDefn.properties │ │ │ ├── DigestMD5SASLMechanismHandlerCfgDefn_de.properties │ │ │ ├── DigestMD5SASLMechanismHandlerCfgDefn_es.properties │ │ │ ├── DigestMD5SASLMechanismHandlerCfgDefn_fr.properties │ │ │ ├── DigestMD5SASLMechanismHandlerCfgDefn_ja.properties │ │ │ ├── DigestMD5SASLMechanismHandlerCfgDefn_ko.properties │ │ │ ├── DigestMD5SASLMechanismHandlerCfgDefn_zh_CN.properties │ │ │ ├── DigestMD5SASLMechanismHandlerCfgDefn_zh_TW.properties │ │ │ ├── DirectoryStringAttributeSyntaxCfgDefn.properties │ │ │ ├── DirectoryStringAttributeSyntaxCfgDefn_de.properties │ │ │ ├── DirectoryStringAttributeSyntaxCfgDefn_es.properties │ │ │ ├── DirectoryStringAttributeSyntaxCfgDefn_fr.properties │ │ │ ├── DirectoryStringAttributeSyntaxCfgDefn_ja.properties │ │ │ ├── DirectoryStringAttributeSyntaxCfgDefn_ko.properties │ │ │ ├── DirectoryStringAttributeSyntaxCfgDefn_zh_CN.properties │ │ │ ├── DirectoryStringAttributeSyntaxCfgDefn_zh_TW.properties │ │ │ ├── DseeCompatAccessControlHandlerCfgDefn.properties │ │ │ ├── DseeCompatAccessControlHandlerCfgDefn_de.properties │ │ │ ├── DseeCompatAccessControlHandlerCfgDefn_es.properties │ │ │ ├── DseeCompatAccessControlHandlerCfgDefn_fr.properties │ │ │ ├── DseeCompatAccessControlHandlerCfgDefn_ja.properties │ │ │ ├── DseeCompatAccessControlHandlerCfgDefn_ko.properties │ │ │ ├── DseeCompatAccessControlHandlerCfgDefn_zh_CN.properties │ │ │ ├── DseeCompatAccessControlHandlerCfgDefn_zh_TW.properties │ │ │ ├── DynamicGroupImplementationCfgDefn.properties │ │ │ ├── DynamicGroupImplementationCfgDefn_de.properties │ │ │ ├── DynamicGroupImplementationCfgDefn_es.properties │ │ │ ├── DynamicGroupImplementationCfgDefn_fr.properties │ │ │ ├── DynamicGroupImplementationCfgDefn_ja.properties │ │ │ ├── DynamicGroupImplementationCfgDefn_ko.properties │ │ │ ├── DynamicGroupImplementationCfgDefn_zh_CN.properties │ │ │ ├── DynamicGroupImplementationCfgDefn_zh_TW.properties │ │ │ ├── EntityTagVirtualAttributeCfgDefn.properties │ │ │ ├── EntryCacheCfgDefn.properties │ │ │ ├── EntryCacheCfgDefn_ca_ES.properties │ │ │ ├── EntryCacheCfgDefn_de.properties │ │ │ ├── EntryCacheCfgDefn_es.properties │ │ │ ├── EntryCacheCfgDefn_fr.properties │ │ │ ├── EntryCacheCfgDefn_ja.properties │ │ │ ├── EntryCacheCfgDefn_ko.properties │ │ │ ├── EntryCacheCfgDefn_pl.properties │ │ │ ├── EntryCacheCfgDefn_zh_CN.properties │ │ │ ├── EntryCacheCfgDefn_zh_TW.properties │ │ │ ├── EntryCacheMonitorProviderCfgDefn.properties │ │ │ ├── EntryCacheMonitorProviderCfgDefn_de.properties │ │ │ ├── EntryCacheMonitorProviderCfgDefn_es.properties │ │ │ ├── EntryCacheMonitorProviderCfgDefn_fr.properties │ │ │ ├── EntryCacheMonitorProviderCfgDefn_ja.properties │ │ │ ├── EntryCacheMonitorProviderCfgDefn_ko.properties │ │ │ ├── EntryCacheMonitorProviderCfgDefn_zh_CN.properties │ │ │ ├── EntryCacheMonitorProviderCfgDefn_zh_TW.properties │ │ │ ├── EntryDNVirtualAttributeCfgDefn.properties │ │ │ ├── EntryDNVirtualAttributeCfgDefn_de.properties │ │ │ ├── EntryDNVirtualAttributeCfgDefn_es.properties │ │ │ ├── EntryDNVirtualAttributeCfgDefn_fr.properties │ │ │ ├── EntryDNVirtualAttributeCfgDefn_ja.properties │ │ │ ├── EntryDNVirtualAttributeCfgDefn_ko.properties │ │ │ ├── EntryDNVirtualAttributeCfgDefn_pl.properties │ │ │ ├── EntryDNVirtualAttributeCfgDefn_zh_CN.properties │ │ │ ├── EntryDNVirtualAttributeCfgDefn_zh_TW.properties │ │ │ ├── EntryUUIDPluginCfgDefn.properties │ │ │ ├── EntryUUIDPluginCfgDefn_de.properties │ │ │ ├── EntryUUIDPluginCfgDefn_es.properties │ │ │ ├── EntryUUIDPluginCfgDefn_fr.properties │ │ │ ├── EntryUUIDPluginCfgDefn_ja.properties │ │ │ ├── EntryUUIDPluginCfgDefn_ko.properties │ │ │ ├── EntryUUIDPluginCfgDefn_pl.properties │ │ │ ├── EntryUUIDPluginCfgDefn_zh_CN.properties │ │ │ ├── EntryUUIDPluginCfgDefn_zh_TW.properties │ │ │ ├── EntryUUIDVirtualAttributeCfgDefn.properties │ │ │ ├── EntryUUIDVirtualAttributeCfgDefn_de.properties │ │ │ ├── EntryUUIDVirtualAttributeCfgDefn_es.properties │ │ │ ├── EntryUUIDVirtualAttributeCfgDefn_fr.properties │ │ │ ├── EntryUUIDVirtualAttributeCfgDefn_ja.properties │ │ │ ├── EntryUUIDVirtualAttributeCfgDefn_ko.properties │ │ │ ├── EntryUUIDVirtualAttributeCfgDefn_pl.properties │ │ │ ├── EntryUUIDVirtualAttributeCfgDefn_zh_CN.properties │ │ │ ├── EntryUUIDVirtualAttributeCfgDefn_zh_TW.properties │ │ │ ├── EqualityMatchingRuleCfgDefn.properties │ │ │ ├── EqualityMatchingRuleCfgDefn_de.properties │ │ │ ├── EqualityMatchingRuleCfgDefn_es.properties │ │ │ ├── EqualityMatchingRuleCfgDefn_fr.properties │ │ │ ├── EqualityMatchingRuleCfgDefn_ja.properties │ │ │ ├── EqualityMatchingRuleCfgDefn_ko.properties │ │ │ ├── EqualityMatchingRuleCfgDefn_zh_CN.properties │ │ │ ├── EqualityMatchingRuleCfgDefn_zh_TW.properties │ │ │ ├── ErrorLogAccountStatusNotificationHandlerCfgDefn.properties │ │ │ ├── ErrorLogAccountStatusNotificationHandlerCfgDefn_de.properties │ │ │ ├── ErrorLogAccountStatusNotificationHandlerCfgDefn_es.properties │ │ │ ├── ErrorLogAccountStatusNotificationHandlerCfgDefn_fr.properties │ │ │ ├── ErrorLogAccountStatusNotificationHandlerCfgDefn_ja.properties │ │ │ ├── ErrorLogAccountStatusNotificationHandlerCfgDefn_ko.properties │ │ │ ├── ErrorLogAccountStatusNotificationHandlerCfgDefn_zh_CN.properties │ │ │ ├── ErrorLogAccountStatusNotificationHandlerCfgDefn_zh_TW.properties │ │ │ ├── ErrorLogPublisherCfgDefn.properties │ │ │ ├── ErrorLogPublisherCfgDefn_de.properties │ │ │ ├── ErrorLogPublisherCfgDefn_es.properties │ │ │ ├── ErrorLogPublisherCfgDefn_fr.properties │ │ │ ├── ErrorLogPublisherCfgDefn_ja.properties │ │ │ ├── ErrorLogPublisherCfgDefn_ko.properties │ │ │ ├── ErrorLogPublisherCfgDefn_zh_CN.properties │ │ │ ├── ErrorLogPublisherCfgDefn_zh_TW.properties │ │ │ ├── ExactMatchIdentityMapperCfgDefn.properties │ │ │ ├── ExactMatchIdentityMapperCfgDefn_de.properties │ │ │ ├── ExactMatchIdentityMapperCfgDefn_es.properties │ │ │ ├── ExactMatchIdentityMapperCfgDefn_fr.properties │ │ │ ├── ExactMatchIdentityMapperCfgDefn_ja.properties │ │ │ ├── ExactMatchIdentityMapperCfgDefn_ko.properties │ │ │ ├── ExactMatchIdentityMapperCfgDefn_zh_CN.properties │ │ │ ├── ExactMatchIdentityMapperCfgDefn_zh_TW.properties │ │ │ ├── ExtendedOperationHandlerCfgDefn.properties │ │ │ ├── ExtendedOperationHandlerCfgDefn_ca_ES.properties │ │ │ ├── ExtendedOperationHandlerCfgDefn_de.properties │ │ │ ├── ExtendedOperationHandlerCfgDefn_es.properties │ │ │ ├── ExtendedOperationHandlerCfgDefn_fr.properties │ │ │ ├── ExtendedOperationHandlerCfgDefn_ja.properties │ │ │ ├── ExtendedOperationHandlerCfgDefn_ko.properties │ │ │ ├── ExtendedOperationHandlerCfgDefn_pl.properties │ │ │ ├── ExtendedOperationHandlerCfgDefn_zh_CN.properties │ │ │ ├── ExtendedOperationHandlerCfgDefn_zh_TW.properties │ │ │ ├── ExternalChangelogDomainCfgDefn.properties │ │ │ ├── ExternalChangelogDomainCfgDefn_de.properties │ │ │ ├── ExternalChangelogDomainCfgDefn_es.properties │ │ │ ├── ExternalChangelogDomainCfgDefn_fr.properties │ │ │ ├── ExternalChangelogDomainCfgDefn_ja.properties │ │ │ ├── ExternalChangelogDomainCfgDefn_zh_CN.properties │ │ │ ├── ExternalSASLMechanismHandlerCfgDefn.properties │ │ │ ├── ExternalSASLMechanismHandlerCfgDefn_de.properties │ │ │ ├── ExternalSASLMechanismHandlerCfgDefn_es.properties │ │ │ ├── ExternalSASLMechanismHandlerCfgDefn_fr.properties │ │ │ ├── ExternalSASLMechanismHandlerCfgDefn_ja.properties │ │ │ ├── ExternalSASLMechanismHandlerCfgDefn_ko.properties │ │ │ ├── ExternalSASLMechanismHandlerCfgDefn_zh_CN.properties │ │ │ ├── ExternalSASLMechanismHandlerCfgDefn_zh_TW.properties │ │ │ ├── FIFOEntryCacheCfgDefn.properties │ │ │ ├── FIFOEntryCacheCfgDefn_de.properties │ │ │ ├── FIFOEntryCacheCfgDefn_es.properties │ │ │ ├── FIFOEntryCacheCfgDefn_fr.properties │ │ │ ├── FIFOEntryCacheCfgDefn_ja.properties │ │ │ ├── FIFOEntryCacheCfgDefn_ko.properties │ │ │ ├── FIFOEntryCacheCfgDefn_zh_CN.properties │ │ │ ├── FIFOEntryCacheCfgDefn_zh_TW.properties │ │ │ ├── FileBasedAccessLogPublisherCfgDefn.properties │ │ │ ├── FileBasedAccessLogPublisherCfgDefn_de.properties │ │ │ ├── FileBasedAccessLogPublisherCfgDefn_es.properties │ │ │ ├── FileBasedAccessLogPublisherCfgDefn_fr.properties │ │ │ ├── FileBasedAccessLogPublisherCfgDefn_ja.properties │ │ │ ├── FileBasedAccessLogPublisherCfgDefn_ko.properties │ │ │ ├── FileBasedAccessLogPublisherCfgDefn_zh_CN.properties │ │ │ ├── FileBasedAccessLogPublisherCfgDefn_zh_TW.properties │ │ │ ├── FileBasedAuditLogPublisherCfgDefn.properties │ │ │ ├── FileBasedDebugLogPublisherCfgDefn.properties │ │ │ ├── FileBasedDebugLogPublisherCfgDefn_de.properties │ │ │ ├── FileBasedDebugLogPublisherCfgDefn_es.properties │ │ │ ├── FileBasedDebugLogPublisherCfgDefn_fr.properties │ │ │ ├── FileBasedDebugLogPublisherCfgDefn_ja.properties │ │ │ ├── FileBasedDebugLogPublisherCfgDefn_ko.properties │ │ │ ├── FileBasedDebugLogPublisherCfgDefn_pl.properties │ │ │ ├── FileBasedDebugLogPublisherCfgDefn_zh_CN.properties │ │ │ ├── FileBasedDebugLogPublisherCfgDefn_zh_TW.properties │ │ │ ├── FileBasedErrorLogPublisherCfgDefn.properties │ │ │ ├── FileBasedErrorLogPublisherCfgDefn_ca_ES.properties │ │ │ ├── FileBasedErrorLogPublisherCfgDefn_de.properties │ │ │ ├── FileBasedErrorLogPublisherCfgDefn_es.properties │ │ │ ├── FileBasedErrorLogPublisherCfgDefn_fr.properties │ │ │ ├── FileBasedErrorLogPublisherCfgDefn_ja.properties │ │ │ ├── FileBasedErrorLogPublisherCfgDefn_ko.properties │ │ │ ├── FileBasedErrorLogPublisherCfgDefn_pl.properties │ │ │ ├── FileBasedErrorLogPublisherCfgDefn_zh_CN.properties │ │ │ ├── FileBasedErrorLogPublisherCfgDefn_zh_TW.properties │ │ │ ├── FileBasedHTTPAccessLogPublisherCfgDefn.properties │ │ │ ├── FileBasedKeyManagerProviderCfgDefn.properties │ │ │ ├── FileBasedKeyManagerProviderCfgDefn_de.properties │ │ │ ├── FileBasedKeyManagerProviderCfgDefn_es.properties │ │ │ ├── FileBasedKeyManagerProviderCfgDefn_fr.properties │ │ │ ├── FileBasedKeyManagerProviderCfgDefn_ja.properties │ │ │ ├── FileBasedKeyManagerProviderCfgDefn_ko.properties │ │ │ ├── FileBasedKeyManagerProviderCfgDefn_zh_CN.properties │ │ │ ├── FileBasedKeyManagerProviderCfgDefn_zh_TW.properties │ │ │ ├── FileBasedTrustManagerProviderCfgDefn.properties │ │ │ ├── FileBasedTrustManagerProviderCfgDefn_de.properties │ │ │ ├── FileBasedTrustManagerProviderCfgDefn_es.properties │ │ │ ├── FileBasedTrustManagerProviderCfgDefn_fr.properties │ │ │ ├── FileBasedTrustManagerProviderCfgDefn_ja.properties │ │ │ ├── FileBasedTrustManagerProviderCfgDefn_ko.properties │ │ │ ├── FileBasedTrustManagerProviderCfgDefn_zh_CN.properties │ │ │ ├── FileBasedTrustManagerProviderCfgDefn_zh_TW.properties │ │ │ ├── FileCountLogRetentionPolicyCfgDefn.properties │ │ │ ├── FileCountLogRetentionPolicyCfgDefn_de.properties │ │ │ ├── FileCountLogRetentionPolicyCfgDefn_es.properties │ │ │ ├── FileCountLogRetentionPolicyCfgDefn_fr.properties │ │ │ ├── FileCountLogRetentionPolicyCfgDefn_ja.properties │ │ │ ├── FileCountLogRetentionPolicyCfgDefn_ko.properties │ │ │ ├── FileCountLogRetentionPolicyCfgDefn_zh_CN.properties │ │ │ ├── FileCountLogRetentionPolicyCfgDefn_zh_TW.properties │ │ │ ├── FingerprintCertificateMapperCfgDefn.properties │ │ │ ├── FingerprintCertificateMapperCfgDefn_de.properties │ │ │ ├── FingerprintCertificateMapperCfgDefn_es.properties │ │ │ ├── FingerprintCertificateMapperCfgDefn_fr.properties │ │ │ ├── FingerprintCertificateMapperCfgDefn_ja.properties │ │ │ ├── FingerprintCertificateMapperCfgDefn_ko.properties │ │ │ ├── FingerprintCertificateMapperCfgDefn_zh_CN.properties │ │ │ ├── FingerprintCertificateMapperCfgDefn_zh_TW.properties │ │ │ ├── FixedTimeLogRotationPolicyCfgDefn.properties │ │ │ ├── FixedTimeLogRotationPolicyCfgDefn_de.properties │ │ │ ├── FixedTimeLogRotationPolicyCfgDefn_es.properties │ │ │ ├── FixedTimeLogRotationPolicyCfgDefn_fr.properties │ │ │ ├── FixedTimeLogRotationPolicyCfgDefn_ja.properties │ │ │ ├── FixedTimeLogRotationPolicyCfgDefn_ko.properties │ │ │ ├── FixedTimeLogRotationPolicyCfgDefn_zh_CN.properties │ │ │ ├── FixedTimeLogRotationPolicyCfgDefn_zh_TW.properties │ │ │ ├── FractionalLDIFImportPluginCfgDefn.properties │ │ │ ├── FractionalLDIFImportPluginCfgDefn_de.properties │ │ │ ├── FractionalLDIFImportPluginCfgDefn_es.properties │ │ │ ├── FractionalLDIFImportPluginCfgDefn_fr.properties │ │ │ ├── FractionalLDIFImportPluginCfgDefn_ja.properties │ │ │ ├── FractionalLDIFImportPluginCfgDefn_ko.properties │ │ │ ├── FractionalLDIFImportPluginCfgDefn_pl.properties │ │ │ ├── FractionalLDIFImportPluginCfgDefn_zh_CN.properties │ │ │ ├── FractionalLDIFImportPluginCfgDefn_zh_TW.properties │ │ │ ├── FreeDiskSpaceLogRetentionPolicyCfgDefn.properties │ │ │ ├── FreeDiskSpaceLogRetentionPolicyCfgDefn_de.properties │ │ │ ├── FreeDiskSpaceLogRetentionPolicyCfgDefn_es.properties │ │ │ ├── FreeDiskSpaceLogRetentionPolicyCfgDefn_fr.properties │ │ │ ├── FreeDiskSpaceLogRetentionPolicyCfgDefn_ja.properties │ │ │ ├── FreeDiskSpaceLogRetentionPolicyCfgDefn_ko.properties │ │ │ ├── FreeDiskSpaceLogRetentionPolicyCfgDefn_zh_CN.properties │ │ │ ├── FreeDiskSpaceLogRetentionPolicyCfgDefn_zh_TW.properties │ │ │ ├── GSSAPISASLMechanismHandlerCfgDefn.properties │ │ │ ├── GSSAPISASLMechanismHandlerCfgDefn_de.properties │ │ │ ├── GSSAPISASLMechanismHandlerCfgDefn_es.properties │ │ │ ├── GSSAPISASLMechanismHandlerCfgDefn_fr.properties │ │ │ ├── GSSAPISASLMechanismHandlerCfgDefn_ja.properties │ │ │ ├── GSSAPISASLMechanismHandlerCfgDefn_ko.properties │ │ │ ├── GSSAPISASLMechanismHandlerCfgDefn_zh_CN.properties │ │ │ ├── GSSAPISASLMechanismHandlerCfgDefn_zh_TW.properties │ │ │ ├── GetConnectionIdExtendedOperationHandlerCfgDefn.properties │ │ │ ├── GetConnectionIdExtendedOperationHandlerCfgDefn_de.properties │ │ │ ├── GetConnectionIdExtendedOperationHandlerCfgDefn_es.properties │ │ │ ├── GetConnectionIdExtendedOperationHandlerCfgDefn_fr.properties │ │ │ ├── GetConnectionIdExtendedOperationHandlerCfgDefn_ja.properties │ │ │ ├── GetConnectionIdExtendedOperationHandlerCfgDefn_ko.properties │ │ │ ├── GetConnectionIdExtendedOperationHandlerCfgDefn_zh_CN.properties │ │ │ ├── GetConnectionIdExtendedOperationHandlerCfgDefn_zh_TW.properties │ │ │ ├── GetSymmetricKeyExtendedOperationHandlerCfgDefn.properties │ │ │ ├── GetSymmetricKeyExtendedOperationHandlerCfgDefn_de.properties │ │ │ ├── GetSymmetricKeyExtendedOperationHandlerCfgDefn_es.properties │ │ │ ├── GetSymmetricKeyExtendedOperationHandlerCfgDefn_fr.properties │ │ │ ├── GetSymmetricKeyExtendedOperationHandlerCfgDefn_ja.properties │ │ │ ├── GetSymmetricKeyExtendedOperationHandlerCfgDefn_ko.properties │ │ │ ├── GetSymmetricKeyExtendedOperationHandlerCfgDefn_zh_CN.properties │ │ │ ├── GetSymmetricKeyExtendedOperationHandlerCfgDefn_zh_TW.properties │ │ │ ├── GlobalCfgDefn.properties │ │ │ ├── GlobalCfgDefn_ca_ES.properties │ │ │ ├── GlobalCfgDefn_de.properties │ │ │ ├── GlobalCfgDefn_es.properties │ │ │ ├── GlobalCfgDefn_fr.properties │ │ │ ├── GlobalCfgDefn_ja.properties │ │ │ ├── GlobalCfgDefn_ko.properties │ │ │ ├── GlobalCfgDefn_pl.properties │ │ │ ├── GlobalCfgDefn_zh_CN.properties │ │ │ ├── GlobalCfgDefn_zh_TW.properties │ │ │ ├── GoverningStructureRuleVirtualAttributeCfgDefn.properties │ │ │ ├── GoverningStructureRuleVirtualAttributeCfgDefn_de.properties │ │ │ ├── GoverningStructureRuleVirtualAttributeCfgDefn_es.properties │ │ │ ├── GoverningStructureRuleVirtualAttributeCfgDefn_fr.properties │ │ │ ├── GoverningStructureRuleVirtualAttributeCfgDefn_ja.properties │ │ │ ├── GoverningStructureRuleVirtualAttributeCfgDefn_ko.properties │ │ │ ├── GoverningStructureRuleVirtualAttributeCfgDefn_pl.properties │ │ │ ├── GoverningStructureRuleVirtualAttributeCfgDefn_zh_CN.properties │ │ │ ├── GoverningStructureRuleVirtualAttributeCfgDefn_zh_TW.properties │ │ │ ├── GroupImplementationCfgDefn.properties │ │ │ ├── GroupImplementationCfgDefn_ca_ES.properties │ │ │ ├── GroupImplementationCfgDefn_de.properties │ │ │ ├── GroupImplementationCfgDefn_es.properties │ │ │ ├── GroupImplementationCfgDefn_fr.properties │ │ │ ├── GroupImplementationCfgDefn_ja.properties │ │ │ ├── GroupImplementationCfgDefn_ko.properties │ │ │ ├── GroupImplementationCfgDefn_pl.properties │ │ │ ├── GroupImplementationCfgDefn_zh_CN.properties │ │ │ ├── GroupImplementationCfgDefn_zh_TW.properties │ │ │ ├── HTTPAccessLogPublisherCfgDefn.properties │ │ │ ├── HTTPConnectionHandlerCfgDefn.properties │ │ │ ├── HasSubordinatesVirtualAttributeCfgDefn.properties │ │ │ ├── HasSubordinatesVirtualAttributeCfgDefn_de.properties │ │ │ ├── HasSubordinatesVirtualAttributeCfgDefn_es.properties │ │ │ ├── HasSubordinatesVirtualAttributeCfgDefn_fr.properties │ │ │ ├── HasSubordinatesVirtualAttributeCfgDefn_ja.properties │ │ │ ├── HasSubordinatesVirtualAttributeCfgDefn_ko.properties │ │ │ ├── HasSubordinatesVirtualAttributeCfgDefn_pl.properties │ │ │ ├── HasSubordinatesVirtualAttributeCfgDefn_zh_CN.properties │ │ │ ├── HasSubordinatesVirtualAttributeCfgDefn_zh_TW.properties │ │ │ ├── IdentityMapperCfgDefn.properties │ │ │ ├── IdentityMapperCfgDefn_ca_ES.properties │ │ │ ├── IdentityMapperCfgDefn_de.properties │ │ │ ├── IdentityMapperCfgDefn_es.properties │ │ │ ├── IdentityMapperCfgDefn_fr.properties │ │ │ ├── IdentityMapperCfgDefn_ja.properties │ │ │ ├── IdentityMapperCfgDefn_ko.properties │ │ │ ├── IdentityMapperCfgDefn_pl.properties │ │ │ ├── IdentityMapperCfgDefn_zh_CN.properties │ │ │ ├── IdentityMapperCfgDefn_zh_TW.properties │ │ │ ├── IsMemberOfVirtualAttributeCfgDefn.properties │ │ │ ├── IsMemberOfVirtualAttributeCfgDefn_de.properties │ │ │ ├── IsMemberOfVirtualAttributeCfgDefn_es.properties │ │ │ ├── IsMemberOfVirtualAttributeCfgDefn_fr.properties │ │ │ ├── IsMemberOfVirtualAttributeCfgDefn_ja.properties │ │ │ ├── IsMemberOfVirtualAttributeCfgDefn_ko.properties │ │ │ ├── IsMemberOfVirtualAttributeCfgDefn_pl.properties │ │ │ ├── IsMemberOfVirtualAttributeCfgDefn_zh_CN.properties │ │ │ ├── IsMemberOfVirtualAttributeCfgDefn_zh_TW.properties │ │ │ ├── JMXAlertHandlerCfgDefn.properties │ │ │ ├── JMXAlertHandlerCfgDefn_de.properties │ │ │ ├── JMXAlertHandlerCfgDefn_es.properties │ │ │ ├── JMXAlertHandlerCfgDefn_fr.properties │ │ │ ├── JMXAlertHandlerCfgDefn_ja.properties │ │ │ ├── JMXAlertHandlerCfgDefn_ko.properties │ │ │ ├── JMXAlertHandlerCfgDefn_zh_CN.properties │ │ │ ├── JMXAlertHandlerCfgDefn_zh_TW.properties │ │ │ ├── JMXConnectionHandlerCfgDefn.properties │ │ │ ├── JMXConnectionHandlerCfgDefn_de.properties │ │ │ ├── JMXConnectionHandlerCfgDefn_es.properties │ │ │ ├── JMXConnectionHandlerCfgDefn_fr.properties │ │ │ ├── JMXConnectionHandlerCfgDefn_ja.properties │ │ │ ├── JMXConnectionHandlerCfgDefn_ko.properties │ │ │ ├── JMXConnectionHandlerCfgDefn_zh_CN.properties │ │ │ ├── JMXConnectionHandlerCfgDefn_zh_TW.properties │ │ │ ├── JPEGAttributeSyntaxCfgDefn.properties │ │ │ ├── KeyManagerProviderCfgDefn.properties │ │ │ ├── KeyManagerProviderCfgDefn_ca_ES.properties │ │ │ ├── KeyManagerProviderCfgDefn_de.properties │ │ │ ├── KeyManagerProviderCfgDefn_es.properties │ │ │ ├── KeyManagerProviderCfgDefn_fr.properties │ │ │ ├── KeyManagerProviderCfgDefn_ja.properties │ │ │ ├── KeyManagerProviderCfgDefn_ko.properties │ │ │ ├── KeyManagerProviderCfgDefn_pl.properties │ │ │ ├── KeyManagerProviderCfgDefn_zh_CN.properties │ │ │ ├── KeyManagerProviderCfgDefn_zh_TW.properties │ │ │ ├── LDAPAttributeDescriptionListPluginCfgDefn.properties │ │ │ ├── LDAPAttributeDescriptionListPluginCfgDefn_de.properties │ │ │ ├── LDAPAttributeDescriptionListPluginCfgDefn_es.properties │ │ │ ├── LDAPAttributeDescriptionListPluginCfgDefn_fr.properties │ │ │ ├── LDAPAttributeDescriptionListPluginCfgDefn_ja.properties │ │ │ ├── LDAPAttributeDescriptionListPluginCfgDefn_ko.properties │ │ │ ├── LDAPAttributeDescriptionListPluginCfgDefn_pl.properties │ │ │ ├── LDAPAttributeDescriptionListPluginCfgDefn_zh_CN.properties │ │ │ ├── LDAPAttributeDescriptionListPluginCfgDefn_zh_TW.properties │ │ │ ├── LDAPConnectionHandlerCfgDefn.properties │ │ │ ├── LDAPConnectionHandlerCfgDefn_de.properties │ │ │ ├── LDAPConnectionHandlerCfgDefn_es.properties │ │ │ ├── LDAPConnectionHandlerCfgDefn_fr.properties │ │ │ ├── LDAPConnectionHandlerCfgDefn_ja.properties │ │ │ ├── LDAPConnectionHandlerCfgDefn_ko.properties │ │ │ ├── LDAPConnectionHandlerCfgDefn_zh_CN.properties │ │ │ ├── LDAPConnectionHandlerCfgDefn_zh_TW.properties │ │ │ ├── LDAPPassThroughAuthenticationPolicyCfgDefn.properties │ │ │ ├── LDIFBackendCfgDefn.properties │ │ │ ├── LDIFBackendCfgDefn_de.properties │ │ │ ├── LDIFBackendCfgDefn_es.properties │ │ │ ├── LDIFBackendCfgDefn_fr.properties │ │ │ ├── LDIFBackendCfgDefn_ja.properties │ │ │ ├── LDIFBackendCfgDefn_ko.properties │ │ │ ├── LDIFBackendCfgDefn_zh_CN.properties │ │ │ ├── LDIFBackendCfgDefn_zh_TW.properties │ │ │ ├── LDIFConnectionHandlerCfgDefn.properties │ │ │ ├── LDIFConnectionHandlerCfgDefn_de.properties │ │ │ ├── LDIFConnectionHandlerCfgDefn_es.properties │ │ │ ├── LDIFConnectionHandlerCfgDefn_fr.properties │ │ │ ├── LDIFConnectionHandlerCfgDefn_ja.properties │ │ │ ├── LDIFConnectionHandlerCfgDefn_ko.properties │ │ │ ├── LDIFConnectionHandlerCfgDefn_zh_CN.properties │ │ │ ├── LDIFConnectionHandlerCfgDefn_zh_TW.properties │ │ │ ├── LastModPluginCfgDefn.properties │ │ │ ├── LastModPluginCfgDefn_de.properties │ │ │ ├── LastModPluginCfgDefn_es.properties │ │ │ ├── LastModPluginCfgDefn_fr.properties │ │ │ ├── LastModPluginCfgDefn_ja.properties │ │ │ ├── LastModPluginCfgDefn_ko.properties │ │ │ ├── LastModPluginCfgDefn_pl.properties │ │ │ ├── LastModPluginCfgDefn_zh_CN.properties │ │ │ ├── LastModPluginCfgDefn_zh_TW.properties │ │ │ ├── LengthBasedPasswordValidatorCfgDefn.properties │ │ │ ├── LengthBasedPasswordValidatorCfgDefn_de.properties │ │ │ ├── LengthBasedPasswordValidatorCfgDefn_es.properties │ │ │ ├── LengthBasedPasswordValidatorCfgDefn_fr.properties │ │ │ ├── LengthBasedPasswordValidatorCfgDefn_ja.properties │ │ │ ├── LengthBasedPasswordValidatorCfgDefn_ko.properties │ │ │ ├── LengthBasedPasswordValidatorCfgDefn_pl.properties │ │ │ ├── LengthBasedPasswordValidatorCfgDefn_zh_CN.properties │ │ │ ├── LengthBasedPasswordValidatorCfgDefn_zh_TW.properties │ │ │ ├── LocalDBBackendCfgDefn.properties │ │ │ ├── LocalDBBackendCfgDefn_ca_ES.properties │ │ │ ├── LocalDBBackendCfgDefn_de.properties │ │ │ ├── LocalDBBackendCfgDefn_es.properties │ │ │ ├── LocalDBBackendCfgDefn_fr.properties │ │ │ ├── LocalDBBackendCfgDefn_ja.properties │ │ │ ├── LocalDBBackendCfgDefn_ko.properties │ │ │ ├── LocalDBBackendCfgDefn_pl.properties │ │ │ ├── LocalDBBackendCfgDefn_zh_CN.properties │ │ │ ├── LocalDBBackendCfgDefn_zh_TW.properties │ │ │ ├── LocalDBIndexCfgDefn.properties │ │ │ ├── LocalDBIndexCfgDefn_ca_ES.properties │ │ │ ├── LocalDBIndexCfgDefn_de.properties │ │ │ ├── LocalDBIndexCfgDefn_es.properties │ │ │ ├── LocalDBIndexCfgDefn_fr.properties │ │ │ ├── LocalDBIndexCfgDefn_ja.properties │ │ │ ├── LocalDBIndexCfgDefn_ko.properties │ │ │ ├── LocalDBIndexCfgDefn_pl.properties │ │ │ ├── LocalDBIndexCfgDefn_zh_CN.properties │ │ │ ├── LocalDBIndexCfgDefn_zh_TW.properties │ │ │ ├── LocalDBVLVIndexCfgDefn.properties │ │ │ ├── LocalDBVLVIndexCfgDefn_ca_ES.properties │ │ │ ├── LocalDBVLVIndexCfgDefn_de.properties │ │ │ ├── LocalDBVLVIndexCfgDefn_es.properties │ │ │ ├── LocalDBVLVIndexCfgDefn_fr.properties │ │ │ ├── LocalDBVLVIndexCfgDefn_ja.properties │ │ │ ├── LocalDBVLVIndexCfgDefn_ko.properties │ │ │ ├── LocalDBVLVIndexCfgDefn_pl.properties │ │ │ ├── LocalDBVLVIndexCfgDefn_zh_CN.properties │ │ │ ├── LocalDBVLVIndexCfgDefn_zh_TW.properties │ │ │ ├── LogPublisherCfgDefn.properties │ │ │ ├── LogPublisherCfgDefn_ca_ES.properties │ │ │ ├── LogPublisherCfgDefn_de.properties │ │ │ ├── LogPublisherCfgDefn_es.properties │ │ │ ├── LogPublisherCfgDefn_fr.properties │ │ │ ├── LogPublisherCfgDefn_ja.properties │ │ │ ├── LogPublisherCfgDefn_ko.properties │ │ │ ├── LogPublisherCfgDefn_pl.properties │ │ │ ├── LogPublisherCfgDefn_zh_CN.properties │ │ │ ├── LogPublisherCfgDefn_zh_TW.properties │ │ │ ├── LogRetentionPolicyCfgDefn.properties │ │ │ ├── LogRetentionPolicyCfgDefn_ca_ES.properties │ │ │ ├── LogRetentionPolicyCfgDefn_de.properties │ │ │ ├── LogRetentionPolicyCfgDefn_es.properties │ │ │ ├── LogRetentionPolicyCfgDefn_fr.properties │ │ │ ├── LogRetentionPolicyCfgDefn_ja.properties │ │ │ ├── LogRetentionPolicyCfgDefn_ko.properties │ │ │ ├── LogRetentionPolicyCfgDefn_pl.properties │ │ │ ├── LogRetentionPolicyCfgDefn_zh_CN.properties │ │ │ ├── LogRetentionPolicyCfgDefn_zh_TW.properties │ │ │ ├── LogRotationPolicyCfgDefn.properties │ │ │ ├── LogRotationPolicyCfgDefn_ca_ES.properties │ │ │ ├── LogRotationPolicyCfgDefn_de.properties │ │ │ ├── LogRotationPolicyCfgDefn_es.properties │ │ │ ├── LogRotationPolicyCfgDefn_fr.properties │ │ │ ├── LogRotationPolicyCfgDefn_ja.properties │ │ │ ├── LogRotationPolicyCfgDefn_ko.properties │ │ │ ├── LogRotationPolicyCfgDefn_pl.properties │ │ │ ├── LogRotationPolicyCfgDefn_zh_CN.properties │ │ │ ├── LogRotationPolicyCfgDefn_zh_TW.properties │ │ │ ├── MD5CryptPasswordStorageSchemeCfgDefn.properties │ │ │ ├── MD5PasswordStorageSchemeCfgDefn.properties │ │ │ ├── MD5PasswordStorageSchemeCfgDefn_de.properties │ │ │ ├── MD5PasswordStorageSchemeCfgDefn_es.properties │ │ │ ├── MD5PasswordStorageSchemeCfgDefn_fr.properties │ │ │ ├── MD5PasswordStorageSchemeCfgDefn_ja.properties │ │ │ ├── MD5PasswordStorageSchemeCfgDefn_ko.properties │ │ │ ├── MD5PasswordStorageSchemeCfgDefn_zh_CN.properties │ │ │ ├── MD5PasswordStorageSchemeCfgDefn_zh_TW.properties │ │ │ ├── MatchingRuleCfgDefn.properties │ │ │ ├── MatchingRuleCfgDefn_ca_ES.properties │ │ │ ├── MatchingRuleCfgDefn_de.properties │ │ │ ├── MatchingRuleCfgDefn_es.properties │ │ │ ├── MatchingRuleCfgDefn_fr.properties │ │ │ ├── MatchingRuleCfgDefn_ja.properties │ │ │ ├── MatchingRuleCfgDefn_ko.properties │ │ │ ├── MatchingRuleCfgDefn_pl.properties │ │ │ ├── MatchingRuleCfgDefn_zh_CN.properties │ │ │ ├── MatchingRuleCfgDefn_zh_TW.properties │ │ │ ├── MemberVirtualAttributeCfgDefn.properties │ │ │ ├── MemberVirtualAttributeCfgDefn_de.properties │ │ │ ├── MemberVirtualAttributeCfgDefn_es.properties │ │ │ ├── MemberVirtualAttributeCfgDefn_fr.properties │ │ │ ├── MemberVirtualAttributeCfgDefn_ja.properties │ │ │ ├── MemberVirtualAttributeCfgDefn_ko.properties │ │ │ ├── MemberVirtualAttributeCfgDefn_pl.properties │ │ │ ├── MemberVirtualAttributeCfgDefn_zh_CN.properties │ │ │ ├── MemberVirtualAttributeCfgDefn_zh_TW.properties │ │ │ ├── MemoryBackendCfgDefn.properties │ │ │ ├── MemoryBackendCfgDefn_de.properties │ │ │ ├── MemoryBackendCfgDefn_es.properties │ │ │ ├── MemoryBackendCfgDefn_fr.properties │ │ │ ├── MemoryBackendCfgDefn_ja.properties │ │ │ ├── MemoryBackendCfgDefn_ko.properties │ │ │ ├── MemoryBackendCfgDefn_zh_CN.properties │ │ │ ├── MemoryBackendCfgDefn_zh_TW.properties │ │ │ ├── MemoryUsageMonitorProviderCfgDefn.properties │ │ │ ├── MemoryUsageMonitorProviderCfgDefn_de.properties │ │ │ ├── MemoryUsageMonitorProviderCfgDefn_es.properties │ │ │ ├── MemoryUsageMonitorProviderCfgDefn_fr.properties │ │ │ ├── MemoryUsageMonitorProviderCfgDefn_ja.properties │ │ │ ├── MemoryUsageMonitorProviderCfgDefn_ko.properties │ │ │ ├── MemoryUsageMonitorProviderCfgDefn_zh_CN.properties │ │ │ ├── MemoryUsageMonitorProviderCfgDefn_zh_TW.properties │ │ │ ├── MonitorBackendCfgDefn.properties │ │ │ ├── MonitorBackendCfgDefn_de.properties │ │ │ ├── MonitorBackendCfgDefn_es.properties │ │ │ ├── MonitorBackendCfgDefn_fr.properties │ │ │ ├── MonitorBackendCfgDefn_ja.properties │ │ │ ├── MonitorBackendCfgDefn_ko.properties │ │ │ ├── MonitorBackendCfgDefn_zh_CN.properties │ │ │ ├── MonitorBackendCfgDefn_zh_TW.properties │ │ │ ├── MonitorProviderCfgDefn.properties │ │ │ ├── MonitorProviderCfgDefn_ca_ES.properties │ │ │ ├── MonitorProviderCfgDefn_de.properties │ │ │ ├── MonitorProviderCfgDefn_es.properties │ │ │ ├── MonitorProviderCfgDefn_fr.properties │ │ │ ├── MonitorProviderCfgDefn_ja.properties │ │ │ ├── MonitorProviderCfgDefn_ko.properties │ │ │ ├── MonitorProviderCfgDefn_pl.properties │ │ │ ├── MonitorProviderCfgDefn_zh_CN.properties │ │ │ ├── MonitorProviderCfgDefn_zh_TW.properties │ │ │ ├── NetworkGroupCriteriaCfgDefn.properties │ │ │ ├── NetworkGroupCriteriaCfgDefn_de.properties │ │ │ ├── NetworkGroupCriteriaCfgDefn_es.properties │ │ │ ├── NetworkGroupCriteriaCfgDefn_fr.properties │ │ │ ├── NetworkGroupCriteriaCfgDefn_ja.properties │ │ │ ├── NetworkGroupCriteriaCfgDefn_ko.properties │ │ │ ├── NetworkGroupCriteriaCfgDefn_zh_CN.properties │ │ │ ├── NetworkGroupCriteriaCfgDefn_zh_TW.properties │ │ │ ├── NetworkGroupRequestFilteringPolicyCfgDefn.properties │ │ │ ├── NetworkGroupRequestFilteringPolicyCfgDefn_de.properties │ │ │ ├── NetworkGroupRequestFilteringPolicyCfgDefn_es.properties │ │ │ ├── NetworkGroupRequestFilteringPolicyCfgDefn_fr.properties │ │ │ ├── NetworkGroupRequestFilteringPolicyCfgDefn_ja.properties │ │ │ ├── NetworkGroupRequestFilteringPolicyCfgDefn_ko.properties │ │ │ ├── NetworkGroupRequestFilteringPolicyCfgDefn_zh_CN.properties │ │ │ ├── NetworkGroupRequestFilteringPolicyCfgDefn_zh_TW.properties │ │ │ ├── NetworkGroupResourceLimitsCfgDefn.properties │ │ │ ├── NetworkGroupResourceLimitsCfgDefn_de.properties │ │ │ ├── NetworkGroupResourceLimitsCfgDefn_es.properties │ │ │ ├── NetworkGroupResourceLimitsCfgDefn_fr.properties │ │ │ ├── NetworkGroupResourceLimitsCfgDefn_ja.properties │ │ │ ├── NetworkGroupResourceLimitsCfgDefn_ko.properties │ │ │ ├── NetworkGroupResourceLimitsCfgDefn_zh_CN.properties │ │ │ ├── NetworkGroupResourceLimitsCfgDefn_zh_TW.properties │ │ │ ├── NullBackendCfgDefn.properties │ │ │ ├── NullBackendCfgDefn_de.properties │ │ │ ├── NullBackendCfgDefn_es.properties │ │ │ ├── NullBackendCfgDefn_fr.properties │ │ │ ├── NullBackendCfgDefn_ja.properties │ │ │ ├── NullBackendCfgDefn_ko.properties │ │ │ ├── NullBackendCfgDefn_zh_CN.properties │ │ │ ├── NullBackendCfgDefn_zh_TW.properties │ │ │ ├── NumSubordinatesVirtualAttributeCfgDefn.properties │ │ │ ├── NumSubordinatesVirtualAttributeCfgDefn_de.properties │ │ │ ├── NumSubordinatesVirtualAttributeCfgDefn_es.properties │ │ │ ├── NumSubordinatesVirtualAttributeCfgDefn_fr.properties │ │ │ ├── NumSubordinatesVirtualAttributeCfgDefn_ja.properties │ │ │ ├── NumSubordinatesVirtualAttributeCfgDefn_ko.properties │ │ │ ├── NumSubordinatesVirtualAttributeCfgDefn_pl.properties │ │ │ ├── NumSubordinatesVirtualAttributeCfgDefn_zh_CN.properties │ │ │ ├── NumSubordinatesVirtualAttributeCfgDefn_zh_TW.properties │ │ │ ├── OrderingMatchingRuleCfgDefn.properties │ │ │ ├── OrderingMatchingRuleCfgDefn_de.properties │ │ │ ├── OrderingMatchingRuleCfgDefn_es.properties │ │ │ ├── OrderingMatchingRuleCfgDefn_fr.properties │ │ │ ├── OrderingMatchingRuleCfgDefn_ja.properties │ │ │ ├── OrderingMatchingRuleCfgDefn_ko.properties │ │ │ ├── OrderingMatchingRuleCfgDefn_zh_CN.properties │ │ │ ├── OrderingMatchingRuleCfgDefn_zh_TW.properties │ │ │ ├── PBKDF2HmacSHA256PasswordStorageSchemeCfgDefn.properties │ │ │ ├── PBKDF2HmacSHA512PasswordStorageSchemeCfgDefn.properties │ │ │ ├── PBKDF2PasswordStorageSchemeCfgDefn.properties │ │ │ ├── PKCS11KeyManagerProviderCfgDefn.properties │ │ │ ├── PKCS11KeyManagerProviderCfgDefn_de.properties │ │ │ ├── PKCS11KeyManagerProviderCfgDefn_es.properties │ │ │ ├── PKCS11KeyManagerProviderCfgDefn_fr.properties │ │ │ ├── PKCS11KeyManagerProviderCfgDefn_ja.properties │ │ │ ├── PKCS11KeyManagerProviderCfgDefn_ko.properties │ │ │ ├── PKCS11KeyManagerProviderCfgDefn_zh_CN.properties │ │ │ ├── PKCS11KeyManagerProviderCfgDefn_zh_TW.properties │ │ │ ├── PKCS5S2PasswordStorageSchemeCfgDefn.properties │ │ │ ├── ParallelWorkQueueCfgDefn.properties │ │ │ ├── ParallelWorkQueueCfgDefn_de.properties │ │ │ ├── ParallelWorkQueueCfgDefn_es.properties │ │ │ ├── ParallelWorkQueueCfgDefn_fr.properties │ │ │ ├── ParallelWorkQueueCfgDefn_ja.properties │ │ │ ├── ParallelWorkQueueCfgDefn_zh_CN.properties │ │ │ ├── PasswordExpirationTimeVirtualAttributeCfgDefn.properties │ │ │ ├── PasswordGeneratorCfgDefn.properties │ │ │ ├── PasswordGeneratorCfgDefn_ca_ES.properties │ │ │ ├── PasswordGeneratorCfgDefn_de.properties │ │ │ ├── PasswordGeneratorCfgDefn_es.properties │ │ │ ├── PasswordGeneratorCfgDefn_fr.properties │ │ │ ├── PasswordGeneratorCfgDefn_ja.properties │ │ │ ├── PasswordGeneratorCfgDefn_ko.properties │ │ │ ├── PasswordGeneratorCfgDefn_pl.properties │ │ │ ├── PasswordGeneratorCfgDefn_zh_CN.properties │ │ │ ├── PasswordGeneratorCfgDefn_zh_TW.properties │ │ │ ├── PasswordModifyExtendedOperationHandlerCfgDefn.properties │ │ │ ├── PasswordModifyExtendedOperationHandlerCfgDefn_de.properties │ │ │ ├── PasswordModifyExtendedOperationHandlerCfgDefn_es.properties │ │ │ ├── PasswordModifyExtendedOperationHandlerCfgDefn_fr.properties │ │ │ ├── PasswordModifyExtendedOperationHandlerCfgDefn_ja.properties │ │ │ ├── PasswordModifyExtendedOperationHandlerCfgDefn_ko.properties │ │ │ ├── PasswordModifyExtendedOperationHandlerCfgDefn_zh_CN.properties │ │ │ ├── PasswordModifyExtendedOperationHandlerCfgDefn_zh_TW.properties │ │ │ ├── PasswordPolicyCfgDefn.properties │ │ │ ├── PasswordPolicyCfgDefn_ca_ES.properties │ │ │ ├── PasswordPolicyCfgDefn_de.properties │ │ │ ├── PasswordPolicyCfgDefn_es.properties │ │ │ ├── PasswordPolicyCfgDefn_fr.properties │ │ │ ├── PasswordPolicyCfgDefn_ja.properties │ │ │ ├── PasswordPolicyCfgDefn_ko.properties │ │ │ ├── PasswordPolicyCfgDefn_pl.properties │ │ │ ├── PasswordPolicyCfgDefn_zh_CN.properties │ │ │ ├── PasswordPolicyCfgDefn_zh_TW.properties │ │ │ ├── PasswordPolicyImportPluginCfgDefn.properties │ │ │ ├── PasswordPolicyImportPluginCfgDefn_de.properties │ │ │ ├── PasswordPolicyImportPluginCfgDefn_es.properties │ │ │ ├── PasswordPolicyImportPluginCfgDefn_fr.properties │ │ │ ├── PasswordPolicyImportPluginCfgDefn_ja.properties │ │ │ ├── PasswordPolicyImportPluginCfgDefn_ko.properties │ │ │ ├── PasswordPolicyImportPluginCfgDefn_pl.properties │ │ │ ├── PasswordPolicyImportPluginCfgDefn_zh_CN.properties │ │ │ ├── PasswordPolicyImportPluginCfgDefn_zh_TW.properties │ │ │ ├── PasswordPolicyStateExtendedOperationHandlerCfgDefn.properties │ │ │ ├── PasswordPolicyStateExtendedOperationHandlerCfgDefn_de.properties │ │ │ ├── PasswordPolicyStateExtendedOperationHandlerCfgDefn_es.properties │ │ │ ├── PasswordPolicyStateExtendedOperationHandlerCfgDefn_fr.properties │ │ │ ├── PasswordPolicyStateExtendedOperationHandlerCfgDefn_ja.properties │ │ │ ├── PasswordPolicyStateExtendedOperationHandlerCfgDefn_ko.properties │ │ │ ├── PasswordPolicyStateExtendedOperationHandlerCfgDefn_zh_CN.properties │ │ │ ├── PasswordPolicyStateExtendedOperationHandlerCfgDefn_zh_TW.properties │ │ │ ├── PasswordPolicySubentryVirtualAttributeCfgDefn.properties │ │ │ ├── PasswordPolicySubentryVirtualAttributeCfgDefn_de.properties │ │ │ ├── PasswordPolicySubentryVirtualAttributeCfgDefn_es.properties │ │ │ ├── PasswordPolicySubentryVirtualAttributeCfgDefn_fr.properties │ │ │ ├── PasswordPolicySubentryVirtualAttributeCfgDefn_ja.properties │ │ │ ├── PasswordPolicySubentryVirtualAttributeCfgDefn_zh_CN.properties │ │ │ ├── PasswordStorageSchemeCfgDefn.properties │ │ │ ├── PasswordStorageSchemeCfgDefn_ca_ES.properties │ │ │ ├── PasswordStorageSchemeCfgDefn_de.properties │ │ │ ├── PasswordStorageSchemeCfgDefn_es.properties │ │ │ ├── PasswordStorageSchemeCfgDefn_fr.properties │ │ │ ├── PasswordStorageSchemeCfgDefn_ja.properties │ │ │ ├── PasswordStorageSchemeCfgDefn_ko.properties │ │ │ ├── PasswordStorageSchemeCfgDefn_pl.properties │ │ │ ├── PasswordStorageSchemeCfgDefn_zh_CN.properties │ │ │ ├── PasswordStorageSchemeCfgDefn_zh_TW.properties │ │ │ ├── PasswordValidatorCfgDefn.properties │ │ │ ├── PasswordValidatorCfgDefn_ca_ES.properties │ │ │ ├── PasswordValidatorCfgDefn_de.properties │ │ │ ├── PasswordValidatorCfgDefn_es.properties │ │ │ ├── PasswordValidatorCfgDefn_fr.properties │ │ │ ├── PasswordValidatorCfgDefn_ja.properties │ │ │ ├── PasswordValidatorCfgDefn_ko.properties │ │ │ ├── PasswordValidatorCfgDefn_pl.properties │ │ │ ├── PasswordValidatorCfgDefn_zh_CN.properties │ │ │ ├── PasswordValidatorCfgDefn_zh_TW.properties │ │ │ ├── PersistitBackendCfgDefn.properties │ │ │ ├── PlainSASLMechanismHandlerCfgDefn.properties │ │ │ ├── PlainSASLMechanismHandlerCfgDefn_de.properties │ │ │ ├── PlainSASLMechanismHandlerCfgDefn_es.properties │ │ │ ├── PlainSASLMechanismHandlerCfgDefn_fr.properties │ │ │ ├── PlainSASLMechanismHandlerCfgDefn_ja.properties │ │ │ ├── PlainSASLMechanismHandlerCfgDefn_ko.properties │ │ │ ├── PlainSASLMechanismHandlerCfgDefn_zh_CN.properties │ │ │ ├── PlainSASLMechanismHandlerCfgDefn_zh_TW.properties │ │ │ ├── PluggableBackendCfgDefn.properties │ │ │ ├── PluginCfgDefn.properties │ │ │ ├── PluginCfgDefn_ca_ES.properties │ │ │ ├── PluginCfgDefn_de.properties │ │ │ ├── PluginCfgDefn_es.properties │ │ │ ├── PluginCfgDefn_fr.properties │ │ │ ├── PluginCfgDefn_ja.properties │ │ │ ├── PluginCfgDefn_ko.properties │ │ │ ├── PluginCfgDefn_pl.properties │ │ │ ├── PluginCfgDefn_zh_CN.properties │ │ │ ├── PluginCfgDefn_zh_TW.properties │ │ │ ├── PluginRootCfgDefn.properties │ │ │ ├── PluginRootCfgDefn_ca_ES.properties │ │ │ ├── PluginRootCfgDefn_de.properties │ │ │ ├── PluginRootCfgDefn_es.properties │ │ │ ├── PluginRootCfgDefn_fr.properties │ │ │ ├── PluginRootCfgDefn_ja.properties │ │ │ ├── PluginRootCfgDefn_ko.properties │ │ │ ├── PluginRootCfgDefn_pl.properties │ │ │ ├── PluginRootCfgDefn_zh_CN.properties │ │ │ ├── PluginRootCfgDefn_zh_TW.properties │ │ │ ├── ProfilerPluginCfgDefn.properties │ │ │ ├── ProfilerPluginCfgDefn_de.properties │ │ │ ├── ProfilerPluginCfgDefn_es.properties │ │ │ ├── ProfilerPluginCfgDefn_fr.properties │ │ │ ├── ProfilerPluginCfgDefn_ja.properties │ │ │ ├── ProfilerPluginCfgDefn_ko.properties │ │ │ ├── ProfilerPluginCfgDefn_pl.properties │ │ │ ├── ProfilerPluginCfgDefn_zh_CN.properties │ │ │ ├── ProfilerPluginCfgDefn_zh_TW.properties │ │ │ ├── RC4PasswordStorageSchemeCfgDefn.properties │ │ │ ├── RC4PasswordStorageSchemeCfgDefn_de.properties │ │ │ ├── RC4PasswordStorageSchemeCfgDefn_es.properties │ │ │ ├── RC4PasswordStorageSchemeCfgDefn_fr.properties │ │ │ ├── RC4PasswordStorageSchemeCfgDefn_ja.properties │ │ │ ├── RC4PasswordStorageSchemeCfgDefn_ko.properties │ │ │ ├── RC4PasswordStorageSchemeCfgDefn_zh_CN.properties │ │ │ ├── RC4PasswordStorageSchemeCfgDefn_zh_TW.properties │ │ │ ├── RandomPasswordGeneratorCfgDefn.properties │ │ │ ├── RandomPasswordGeneratorCfgDefn_de.properties │ │ │ ├── RandomPasswordGeneratorCfgDefn_es.properties │ │ │ ├── RandomPasswordGeneratorCfgDefn_fr.properties │ │ │ ├── RandomPasswordGeneratorCfgDefn_ja.properties │ │ │ ├── RandomPasswordGeneratorCfgDefn_ko.properties │ │ │ ├── RandomPasswordGeneratorCfgDefn_zh_CN.properties │ │ │ ├── RandomPasswordGeneratorCfgDefn_zh_TW.properties │ │ │ ├── ReferentialIntegrityPluginCfgDefn.properties │ │ │ ├── ReferentialIntegrityPluginCfgDefn_de.properties │ │ │ ├── ReferentialIntegrityPluginCfgDefn_es.properties │ │ │ ├── ReferentialIntegrityPluginCfgDefn_fr.properties │ │ │ ├── ReferentialIntegrityPluginCfgDefn_ja.properties │ │ │ ├── ReferentialIntegrityPluginCfgDefn_ko.properties │ │ │ ├── ReferentialIntegrityPluginCfgDefn_pl.properties │ │ │ ├── ReferentialIntegrityPluginCfgDefn_zh_CN.properties │ │ │ ├── ReferentialIntegrityPluginCfgDefn_zh_TW.properties │ │ │ ├── RegularExpressionIdentityMapperCfgDefn.properties │ │ │ ├── RegularExpressionIdentityMapperCfgDefn_de.properties │ │ │ ├── RegularExpressionIdentityMapperCfgDefn_es.properties │ │ │ ├── RegularExpressionIdentityMapperCfgDefn_fr.properties │ │ │ ├── RegularExpressionIdentityMapperCfgDefn_ja.properties │ │ │ ├── RegularExpressionIdentityMapperCfgDefn_ko.properties │ │ │ ├── RegularExpressionIdentityMapperCfgDefn_zh_CN.properties │ │ │ ├── RegularExpressionIdentityMapperCfgDefn_zh_TW.properties │ │ │ ├── RepeatedCharactersPasswordValidatorCfgDefn.properties │ │ │ ├── RepeatedCharactersPasswordValidatorCfgDefn_de.properties │ │ │ ├── RepeatedCharactersPasswordValidatorCfgDefn_es.properties │ │ │ ├── RepeatedCharactersPasswordValidatorCfgDefn_fr.properties │ │ │ ├── RepeatedCharactersPasswordValidatorCfgDefn_ja.properties │ │ │ ├── RepeatedCharactersPasswordValidatorCfgDefn_ko.properties │ │ │ ├── RepeatedCharactersPasswordValidatorCfgDefn_pl.properties │ │ │ ├── RepeatedCharactersPasswordValidatorCfgDefn_zh_CN.properties │ │ │ ├── RepeatedCharactersPasswordValidatorCfgDefn_zh_TW.properties │ │ │ ├── ReplicationDomainCfgDefn.properties │ │ │ ├── ReplicationDomainCfgDefn_ca_ES.properties │ │ │ ├── ReplicationDomainCfgDefn_de.properties │ │ │ ├── ReplicationDomainCfgDefn_es.properties │ │ │ ├── ReplicationDomainCfgDefn_fr.properties │ │ │ ├── ReplicationDomainCfgDefn_ja.properties │ │ │ ├── ReplicationDomainCfgDefn_ko.properties │ │ │ ├── ReplicationDomainCfgDefn_pl.properties │ │ │ ├── ReplicationDomainCfgDefn_zh_CN.properties │ │ │ ├── ReplicationDomainCfgDefn_zh_TW.properties │ │ │ ├── ReplicationServerCfgDefn.properties │ │ │ ├── ReplicationServerCfgDefn_ca_ES.properties │ │ │ ├── ReplicationServerCfgDefn_de.properties │ │ │ ├── ReplicationServerCfgDefn_es.properties │ │ │ ├── ReplicationServerCfgDefn_fr.properties │ │ │ ├── ReplicationServerCfgDefn_ja.properties │ │ │ ├── ReplicationServerCfgDefn_ko.properties │ │ │ ├── ReplicationServerCfgDefn_pl.properties │ │ │ ├── ReplicationServerCfgDefn_zh_CN.properties │ │ │ ├── ReplicationServerCfgDefn_zh_TW.properties │ │ │ ├── ReplicationSynchronizationProviderCfgDefn.properties │ │ │ ├── ReplicationSynchronizationProviderCfgDefn_ca_ES.properties │ │ │ ├── ReplicationSynchronizationProviderCfgDefn_de.properties │ │ │ ├── ReplicationSynchronizationProviderCfgDefn_es.properties │ │ │ ├── ReplicationSynchronizationProviderCfgDefn_fr.properties │ │ │ ├── ReplicationSynchronizationProviderCfgDefn_ja.properties │ │ │ ├── ReplicationSynchronizationProviderCfgDefn_ko.properties │ │ │ ├── ReplicationSynchronizationProviderCfgDefn_pl.properties │ │ │ ├── ReplicationSynchronizationProviderCfgDefn_zh_CN.properties │ │ │ ├── ReplicationSynchronizationProviderCfgDefn_zh_TW.properties │ │ │ ├── RootCfgDefn.properties │ │ │ ├── RootCfgDefn_ca_ES.properties │ │ │ ├── RootCfgDefn_de.properties │ │ │ ├── RootCfgDefn_es.properties │ │ │ ├── RootCfgDefn_fr.properties │ │ │ ├── RootCfgDefn_ja.properties │ │ │ ├── RootCfgDefn_ko.properties │ │ │ ├── RootCfgDefn_pl.properties │ │ │ ├── RootCfgDefn_zh_CN.properties │ │ │ ├── RootCfgDefn_zh_TW.properties │ │ │ ├── RootDNCfgDefn.properties │ │ │ ├── RootDNCfgDefn_ca_ES.properties │ │ │ ├── RootDNCfgDefn_de.properties │ │ │ ├── RootDNCfgDefn_es.properties │ │ │ ├── RootDNCfgDefn_fr.properties │ │ │ ├── RootDNCfgDefn_ja.properties │ │ │ ├── RootDNCfgDefn_ko.properties │ │ │ ├── RootDNCfgDefn_pl.properties │ │ │ ├── RootDNCfgDefn_zh_CN.properties │ │ │ ├── RootDNCfgDefn_zh_TW.properties │ │ │ ├── RootDNUserCfgDefn.properties │ │ │ ├── RootDNUserCfgDefn_de.properties │ │ │ ├── RootDNUserCfgDefn_es.properties │ │ │ ├── RootDNUserCfgDefn_fr.properties │ │ │ ├── RootDNUserCfgDefn_ja.properties │ │ │ ├── RootDNUserCfgDefn_ko.properties │ │ │ ├── RootDNUserCfgDefn_zh_CN.properties │ │ │ ├── RootDNUserCfgDefn_zh_TW.properties │ │ │ ├── RootDSEBackendCfgDefn.properties │ │ │ ├── RootDSEBackendCfgDefn_ca_ES.properties │ │ │ ├── RootDSEBackendCfgDefn_de.properties │ │ │ ├── RootDSEBackendCfgDefn_es.properties │ │ │ ├── RootDSEBackendCfgDefn_fr.properties │ │ │ ├── RootDSEBackendCfgDefn_ja.properties │ │ │ ├── RootDSEBackendCfgDefn_ko.properties │ │ │ ├── RootDSEBackendCfgDefn_pl.properties │ │ │ ├── RootDSEBackendCfgDefn_zh_CN.properties │ │ │ ├── RootDSEBackendCfgDefn_zh_TW.properties │ │ │ ├── SASLMechanismHandlerCfgDefn.properties │ │ │ ├── SASLMechanismHandlerCfgDefn_ca_ES.properties │ │ │ ├── SASLMechanismHandlerCfgDefn_de.properties │ │ │ ├── SASLMechanismHandlerCfgDefn_es.properties │ │ │ ├── SASLMechanismHandlerCfgDefn_fr.properties │ │ │ ├── SASLMechanismHandlerCfgDefn_ja.properties │ │ │ ├── SASLMechanismHandlerCfgDefn_ko.properties │ │ │ ├── SASLMechanismHandlerCfgDefn_pl.properties │ │ │ ├── SASLMechanismHandlerCfgDefn_zh_CN.properties │ │ │ ├── SASLMechanismHandlerCfgDefn_zh_TW.properties │ │ │ ├── SHA1PasswordStorageSchemeCfgDefn.properties │ │ │ ├── SHA1PasswordStorageSchemeCfgDefn_de.properties │ │ │ ├── SHA1PasswordStorageSchemeCfgDefn_es.properties │ │ │ ├── SHA1PasswordStorageSchemeCfgDefn_fr.properties │ │ │ ├── SHA1PasswordStorageSchemeCfgDefn_ja.properties │ │ │ ├── SHA1PasswordStorageSchemeCfgDefn_ko.properties │ │ │ ├── SHA1PasswordStorageSchemeCfgDefn_zh_CN.properties │ │ │ ├── SHA1PasswordStorageSchemeCfgDefn_zh_TW.properties │ │ │ ├── SMTPAccountStatusNotificationHandlerCfgDefn.properties │ │ │ ├── SMTPAccountStatusNotificationHandlerCfgDefn_de.properties │ │ │ ├── SMTPAccountStatusNotificationHandlerCfgDefn_es.properties │ │ │ ├── SMTPAccountStatusNotificationHandlerCfgDefn_fr.properties │ │ │ ├── SMTPAccountStatusNotificationHandlerCfgDefn_ja.properties │ │ │ ├── SMTPAccountStatusNotificationHandlerCfgDefn_ko.properties │ │ │ ├── SMTPAccountStatusNotificationHandlerCfgDefn_zh_CN.properties │ │ │ ├── SMTPAccountStatusNotificationHandlerCfgDefn_zh_TW.properties │ │ │ ├── SMTPAlertHandlerCfgDefn.properties │ │ │ ├── SMTPAlertHandlerCfgDefn_de.properties │ │ │ ├── SMTPAlertHandlerCfgDefn_es.properties │ │ │ ├── SMTPAlertHandlerCfgDefn_fr.properties │ │ │ ├── SMTPAlertHandlerCfgDefn_ja.properties │ │ │ ├── SMTPAlertHandlerCfgDefn_ko.properties │ │ │ ├── SMTPAlertHandlerCfgDefn_zh_CN.properties │ │ │ ├── SMTPAlertHandlerCfgDefn_zh_TW.properties │ │ │ ├── SNMPConnectionHandlerCfgDefn.properties │ │ │ ├── SNMPConnectionHandlerCfgDefn_de.properties │ │ │ ├── SNMPConnectionHandlerCfgDefn_es.properties │ │ │ ├── SNMPConnectionHandlerCfgDefn_fr.properties │ │ │ ├── SNMPConnectionHandlerCfgDefn_ja.properties │ │ │ ├── SNMPConnectionHandlerCfgDefn_ko.properties │ │ │ ├── SNMPConnectionHandlerCfgDefn_zh_CN.properties │ │ │ ├── SNMPConnectionHandlerCfgDefn_zh_TW.properties │ │ │ ├── SaltedMD5PasswordStorageSchemeCfgDefn.properties │ │ │ ├── SaltedMD5PasswordStorageSchemeCfgDefn_de.properties │ │ │ ├── SaltedMD5PasswordStorageSchemeCfgDefn_es.properties │ │ │ ├── SaltedMD5PasswordStorageSchemeCfgDefn_fr.properties │ │ │ ├── SaltedMD5PasswordStorageSchemeCfgDefn_ja.properties │ │ │ ├── SaltedMD5PasswordStorageSchemeCfgDefn_ko.properties │ │ │ ├── SaltedMD5PasswordStorageSchemeCfgDefn_zh_CN.properties │ │ │ ├── SaltedMD5PasswordStorageSchemeCfgDefn_zh_TW.properties │ │ │ ├── SaltedSHA1PasswordStorageSchemeCfgDefn.properties │ │ │ ├── SaltedSHA1PasswordStorageSchemeCfgDefn_de.properties │ │ │ ├── SaltedSHA1PasswordStorageSchemeCfgDefn_es.properties │ │ │ ├── SaltedSHA1PasswordStorageSchemeCfgDefn_fr.properties │ │ │ ├── SaltedSHA1PasswordStorageSchemeCfgDefn_ja.properties │ │ │ ├── SaltedSHA1PasswordStorageSchemeCfgDefn_ko.properties │ │ │ ├── SaltedSHA1PasswordStorageSchemeCfgDefn_zh_CN.properties │ │ │ ├── SaltedSHA1PasswordStorageSchemeCfgDefn_zh_TW.properties │ │ │ ├── SaltedSHA256PasswordStorageSchemeCfgDefn.properties │ │ │ ├── SaltedSHA256PasswordStorageSchemeCfgDefn_de.properties │ │ │ ├── SaltedSHA256PasswordStorageSchemeCfgDefn_es.properties │ │ │ ├── SaltedSHA256PasswordStorageSchemeCfgDefn_fr.properties │ │ │ ├── SaltedSHA256PasswordStorageSchemeCfgDefn_ja.properties │ │ │ ├── SaltedSHA256PasswordStorageSchemeCfgDefn_ko.properties │ │ │ ├── SaltedSHA256PasswordStorageSchemeCfgDefn_zh_CN.properties │ │ │ ├── SaltedSHA256PasswordStorageSchemeCfgDefn_zh_TW.properties │ │ │ ├── SaltedSHA384PasswordStorageSchemeCfgDefn.properties │ │ │ ├── SaltedSHA384PasswordStorageSchemeCfgDefn_de.properties │ │ │ ├── SaltedSHA384PasswordStorageSchemeCfgDefn_es.properties │ │ │ ├── SaltedSHA384PasswordStorageSchemeCfgDefn_fr.properties │ │ │ ├── SaltedSHA384PasswordStorageSchemeCfgDefn_ja.properties │ │ │ ├── SaltedSHA384PasswordStorageSchemeCfgDefn_ko.properties │ │ │ ├── SaltedSHA384PasswordStorageSchemeCfgDefn_zh_CN.properties │ │ │ ├── SaltedSHA384PasswordStorageSchemeCfgDefn_zh_TW.properties │ │ │ ├── SaltedSHA512PasswordStorageSchemeCfgDefn.properties │ │ │ ├── SaltedSHA512PasswordStorageSchemeCfgDefn_de.properties │ │ │ ├── SaltedSHA512PasswordStorageSchemeCfgDefn_es.properties │ │ │ ├── SaltedSHA512PasswordStorageSchemeCfgDefn_fr.properties │ │ │ ├── SaltedSHA512PasswordStorageSchemeCfgDefn_ja.properties │ │ │ ├── SaltedSHA512PasswordStorageSchemeCfgDefn_ko.properties │ │ │ ├── SaltedSHA512PasswordStorageSchemeCfgDefn_zh_CN.properties │ │ │ ├── SaltedSHA512PasswordStorageSchemeCfgDefn_zh_TW.properties │ │ │ ├── SambaPasswordPluginCfgDefn.properties │ │ │ ├── SchemaBackendCfgDefn.properties │ │ │ ├── SchemaBackendCfgDefn_de.properties │ │ │ ├── SchemaBackendCfgDefn_es.properties │ │ │ ├── SchemaBackendCfgDefn_fr.properties │ │ │ ├── SchemaBackendCfgDefn_ja.properties │ │ │ ├── SchemaBackendCfgDefn_ko.properties │ │ │ ├── SchemaBackendCfgDefn_zh_CN.properties │ │ │ ├── SchemaBackendCfgDefn_zh_TW.properties │ │ │ ├── SchemaProviderCfgDefn.properties │ │ │ ├── SevenBitCleanPluginCfgDefn.properties │ │ │ ├── SevenBitCleanPluginCfgDefn_de.properties │ │ │ ├── SevenBitCleanPluginCfgDefn_es.properties │ │ │ ├── SevenBitCleanPluginCfgDefn_fr.properties │ │ │ ├── SevenBitCleanPluginCfgDefn_ja.properties │ │ │ ├── SevenBitCleanPluginCfgDefn_ko.properties │ │ │ ├── SevenBitCleanPluginCfgDefn_pl.properties │ │ │ ├── SevenBitCleanPluginCfgDefn_zh_CN.properties │ │ │ ├── SevenBitCleanPluginCfgDefn_zh_TW.properties │ │ │ ├── SimilarityBasedPasswordValidatorCfgDefn.properties │ │ │ ├── SimilarityBasedPasswordValidatorCfgDefn_de.properties │ │ │ ├── SimilarityBasedPasswordValidatorCfgDefn_es.properties │ │ │ ├── SimilarityBasedPasswordValidatorCfgDefn_fr.properties │ │ │ ├── SimilarityBasedPasswordValidatorCfgDefn_ja.properties │ │ │ ├── SimilarityBasedPasswordValidatorCfgDefn_ko.properties │ │ │ ├── SimilarityBasedPasswordValidatorCfgDefn_pl.properties │ │ │ ├── SimilarityBasedPasswordValidatorCfgDefn_zh_CN.properties │ │ │ ├── SimilarityBasedPasswordValidatorCfgDefn_zh_TW.properties │ │ │ ├── SizeLimitLogRetentionPolicyCfgDefn.properties │ │ │ ├── SizeLimitLogRetentionPolicyCfgDefn_de.properties │ │ │ ├── SizeLimitLogRetentionPolicyCfgDefn_es.properties │ │ │ ├── SizeLimitLogRetentionPolicyCfgDefn_fr.properties │ │ │ ├── SizeLimitLogRetentionPolicyCfgDefn_ja.properties │ │ │ ├── SizeLimitLogRetentionPolicyCfgDefn_ko.properties │ │ │ ├── SizeLimitLogRetentionPolicyCfgDefn_zh_CN.properties │ │ │ ├── SizeLimitLogRetentionPolicyCfgDefn_zh_TW.properties │ │ │ ├── SizeLimitLogRotationPolicyCfgDefn.properties │ │ │ ├── SizeLimitLogRotationPolicyCfgDefn_de.properties │ │ │ ├── SizeLimitLogRotationPolicyCfgDefn_es.properties │ │ │ ├── SizeLimitLogRotationPolicyCfgDefn_fr.properties │ │ │ ├── SizeLimitLogRotationPolicyCfgDefn_ja.properties │ │ │ ├── SizeLimitLogRotationPolicyCfgDefn_ko.properties │ │ │ ├── SizeLimitLogRotationPolicyCfgDefn_zh_CN.properties │ │ │ ├── SizeLimitLogRotationPolicyCfgDefn_zh_TW.properties │ │ │ ├── SoftReferenceEntryCacheCfgDefn.properties │ │ │ ├── SoftReferenceEntryCacheCfgDefn_de.properties │ │ │ ├── SoftReferenceEntryCacheCfgDefn_es.properties │ │ │ ├── SoftReferenceEntryCacheCfgDefn_fr.properties │ │ │ ├── SoftReferenceEntryCacheCfgDefn_ja.properties │ │ │ ├── SoftReferenceEntryCacheCfgDefn_ko.properties │ │ │ ├── SoftReferenceEntryCacheCfgDefn_zh_CN.properties │ │ │ ├── SoftReferenceEntryCacheCfgDefn_zh_TW.properties │ │ │ ├── StackTraceMonitorProviderCfgDefn.properties │ │ │ ├── StackTraceMonitorProviderCfgDefn_de.properties │ │ │ ├── StackTraceMonitorProviderCfgDefn_es.properties │ │ │ ├── StackTraceMonitorProviderCfgDefn_fr.properties │ │ │ ├── StackTraceMonitorProviderCfgDefn_ja.properties │ │ │ ├── StackTraceMonitorProviderCfgDefn_ko.properties │ │ │ ├── StackTraceMonitorProviderCfgDefn_zh_CN.properties │ │ │ ├── StackTraceMonitorProviderCfgDefn_zh_TW.properties │ │ │ ├── StartTLSExtendedOperationHandlerCfgDefn.properties │ │ │ ├── StartTLSExtendedOperationHandlerCfgDefn_de.properties │ │ │ ├── StartTLSExtendedOperationHandlerCfgDefn_es.properties │ │ │ ├── StartTLSExtendedOperationHandlerCfgDefn_fr.properties │ │ │ ├── StartTLSExtendedOperationHandlerCfgDefn_ja.properties │ │ │ ├── StartTLSExtendedOperationHandlerCfgDefn_ko.properties │ │ │ ├── StartTLSExtendedOperationHandlerCfgDefn_zh_CN.properties │ │ │ ├── StartTLSExtendedOperationHandlerCfgDefn_zh_TW.properties │ │ │ ├── StaticGroupImplementationCfgDefn.properties │ │ │ ├── StaticGroupImplementationCfgDefn_de.properties │ │ │ ├── StaticGroupImplementationCfgDefn_es.properties │ │ │ ├── StaticGroupImplementationCfgDefn_fr.properties │ │ │ ├── StaticGroupImplementationCfgDefn_ja.properties │ │ │ ├── StaticGroupImplementationCfgDefn_ko.properties │ │ │ ├── StaticGroupImplementationCfgDefn_zh_CN.properties │ │ │ ├── StaticGroupImplementationCfgDefn_zh_TW.properties │ │ │ ├── StructuralObjectClassVirtualAttributeCfgDefn.properties │ │ │ ├── StructuralObjectClassVirtualAttributeCfgDefn_de.properties │ │ │ ├── StructuralObjectClassVirtualAttributeCfgDefn_es.properties │ │ │ ├── StructuralObjectClassVirtualAttributeCfgDefn_fr.properties │ │ │ ├── StructuralObjectClassVirtualAttributeCfgDefn_ja.properties │ │ │ ├── StructuralObjectClassVirtualAttributeCfgDefn_ko.properties │ │ │ ├── StructuralObjectClassVirtualAttributeCfgDefn_pl.properties │ │ │ ├── StructuralObjectClassVirtualAttributeCfgDefn_zh_CN.properties │ │ │ ├── StructuralObjectClassVirtualAttributeCfgDefn_zh_TW.properties │ │ │ ├── SubjectAttributeToUserAttributeCertificateMapperCfgDefn.properties │ │ │ ├── SubjectAttributeToUserAttributeCertificateMapperCfgDefn_de.properties │ │ │ ├── SubjectAttributeToUserAttributeCertificateMapperCfgDefn_es.properties │ │ │ ├── SubjectAttributeToUserAttributeCertificateMapperCfgDefn_fr.properties │ │ │ ├── SubjectAttributeToUserAttributeCertificateMapperCfgDefn_ja.properties │ │ │ ├── SubjectAttributeToUserAttributeCertificateMapperCfgDefn_ko.properties │ │ │ ├── SubjectAttributeToUserAttributeCertificateMapperCfgDefn_zh_CN.properties │ │ │ ├── SubjectAttributeToUserAttributeCertificateMapperCfgDefn_zh_TW.properties │ │ │ ├── SubjectDNToUserAttributeCertificateMapperCfgDefn.properties │ │ │ ├── SubjectDNToUserAttributeCertificateMapperCfgDefn_de.properties │ │ │ ├── SubjectDNToUserAttributeCertificateMapperCfgDefn_es.properties │ │ │ ├── SubjectDNToUserAttributeCertificateMapperCfgDefn_fr.properties │ │ │ ├── SubjectDNToUserAttributeCertificateMapperCfgDefn_ja.properties │ │ │ ├── SubjectDNToUserAttributeCertificateMapperCfgDefn_ko.properties │ │ │ ├── SubjectDNToUserAttributeCertificateMapperCfgDefn_zh_CN.properties │ │ │ ├── SubjectDNToUserAttributeCertificateMapperCfgDefn_zh_TW.properties │ │ │ ├── SubjectEqualsDNCertificateMapperCfgDefn.properties │ │ │ ├── SubjectEqualsDNCertificateMapperCfgDefn_de.properties │ │ │ ├── SubjectEqualsDNCertificateMapperCfgDefn_es.properties │ │ │ ├── SubjectEqualsDNCertificateMapperCfgDefn_fr.properties │ │ │ ├── SubjectEqualsDNCertificateMapperCfgDefn_ja.properties │ │ │ ├── SubjectEqualsDNCertificateMapperCfgDefn_ko.properties │ │ │ ├── SubjectEqualsDNCertificateMapperCfgDefn_zh_CN.properties │ │ │ ├── SubjectEqualsDNCertificateMapperCfgDefn_zh_TW.properties │ │ │ ├── SubschemaSubentryVirtualAttributeCfgDefn.properties │ │ │ ├── SubschemaSubentryVirtualAttributeCfgDefn_de.properties │ │ │ ├── SubschemaSubentryVirtualAttributeCfgDefn_es.properties │ │ │ ├── SubschemaSubentryVirtualAttributeCfgDefn_fr.properties │ │ │ ├── SubschemaSubentryVirtualAttributeCfgDefn_ja.properties │ │ │ ├── SubschemaSubentryVirtualAttributeCfgDefn_ko.properties │ │ │ ├── SubschemaSubentryVirtualAttributeCfgDefn_pl.properties │ │ │ ├── SubschemaSubentryVirtualAttributeCfgDefn_zh_CN.properties │ │ │ ├── SubschemaSubentryVirtualAttributeCfgDefn_zh_TW.properties │ │ │ ├── SubstringMatchingRuleCfgDefn.properties │ │ │ ├── SubstringMatchingRuleCfgDefn_de.properties │ │ │ ├── SubstringMatchingRuleCfgDefn_es.properties │ │ │ ├── SubstringMatchingRuleCfgDefn_fr.properties │ │ │ ├── SubstringMatchingRuleCfgDefn_ja.properties │ │ │ ├── SubstringMatchingRuleCfgDefn_ko.properties │ │ │ ├── SubstringMatchingRuleCfgDefn_zh_CN.properties │ │ │ ├── SubstringMatchingRuleCfgDefn_zh_TW.properties │ │ │ ├── SynchronizationProviderCfgDefn.properties │ │ │ ├── SynchronizationProviderCfgDefn_ca_ES.properties │ │ │ ├── SynchronizationProviderCfgDefn_de.properties │ │ │ ├── SynchronizationProviderCfgDefn_es.properties │ │ │ ├── SynchronizationProviderCfgDefn_fr.properties │ │ │ ├── SynchronizationProviderCfgDefn_ja.properties │ │ │ ├── SynchronizationProviderCfgDefn_ko.properties │ │ │ ├── SynchronizationProviderCfgDefn_pl.properties │ │ │ ├── SynchronizationProviderCfgDefn_zh_CN.properties │ │ │ ├── SynchronizationProviderCfgDefn_zh_TW.properties │ │ │ ├── SystemInfoMonitorProviderCfgDefn.properties │ │ │ ├── SystemInfoMonitorProviderCfgDefn_de.properties │ │ │ ├── SystemInfoMonitorProviderCfgDefn_es.properties │ │ │ ├── SystemInfoMonitorProviderCfgDefn_fr.properties │ │ │ ├── SystemInfoMonitorProviderCfgDefn_ja.properties │ │ │ ├── SystemInfoMonitorProviderCfgDefn_ko.properties │ │ │ ├── SystemInfoMonitorProviderCfgDefn_zh_CN.properties │ │ │ ├── SystemInfoMonitorProviderCfgDefn_zh_TW.properties │ │ │ ├── TaskBackendCfgDefn.properties │ │ │ ├── TaskBackendCfgDefn_de.properties │ │ │ ├── TaskBackendCfgDefn_es.properties │ │ │ ├── TaskBackendCfgDefn_fr.properties │ │ │ ├── TaskBackendCfgDefn_ja.properties │ │ │ ├── TaskBackendCfgDefn_ko.properties │ │ │ ├── TaskBackendCfgDefn_zh_CN.properties │ │ │ ├── TaskBackendCfgDefn_zh_TW.properties │ │ │ ├── TelephoneNumberAttributeSyntaxCfgDefn.properties │ │ │ ├── TelephoneNumberAttributeSyntaxCfgDefn_de.properties │ │ │ ├── TelephoneNumberAttributeSyntaxCfgDefn_es.properties │ │ │ ├── TelephoneNumberAttributeSyntaxCfgDefn_fr.properties │ │ │ ├── TelephoneNumberAttributeSyntaxCfgDefn_ja.properties │ │ │ ├── TelephoneNumberAttributeSyntaxCfgDefn_ko.properties │ │ │ ├── TelephoneNumberAttributeSyntaxCfgDefn_pl.properties │ │ │ ├── TelephoneNumberAttributeSyntaxCfgDefn_zh_CN.properties │ │ │ ├── TelephoneNumberAttributeSyntaxCfgDefn_zh_TW.properties │ │ │ ├── TimeLimitLogRotationPolicyCfgDefn.properties │ │ │ ├── TimeLimitLogRotationPolicyCfgDefn_de.properties │ │ │ ├── TimeLimitLogRotationPolicyCfgDefn_es.properties │ │ │ ├── TimeLimitLogRotationPolicyCfgDefn_fr.properties │ │ │ ├── TimeLimitLogRotationPolicyCfgDefn_ja.properties │ │ │ ├── TimeLimitLogRotationPolicyCfgDefn_ko.properties │ │ │ ├── TimeLimitLogRotationPolicyCfgDefn_zh_CN.properties │ │ │ ├── TimeLimitLogRotationPolicyCfgDefn_zh_TW.properties │ │ │ ├── TraditionalWorkQueueCfgDefn.properties │ │ │ ├── TraditionalWorkQueueCfgDefn_de.properties │ │ │ ├── TraditionalWorkQueueCfgDefn_es.properties │ │ │ ├── TraditionalWorkQueueCfgDefn_fr.properties │ │ │ ├── TraditionalWorkQueueCfgDefn_ja.properties │ │ │ ├── TraditionalWorkQueueCfgDefn_ko.properties │ │ │ ├── TraditionalWorkQueueCfgDefn_zh_CN.properties │ │ │ ├── TraditionalWorkQueueCfgDefn_zh_TW.properties │ │ │ ├── TripleDESPasswordStorageSchemeCfgDefn.properties │ │ │ ├── TripleDESPasswordStorageSchemeCfgDefn_de.properties │ │ │ ├── TripleDESPasswordStorageSchemeCfgDefn_es.properties │ │ │ ├── TripleDESPasswordStorageSchemeCfgDefn_fr.properties │ │ │ ├── TripleDESPasswordStorageSchemeCfgDefn_ja.properties │ │ │ ├── TripleDESPasswordStorageSchemeCfgDefn_ko.properties │ │ │ ├── TripleDESPasswordStorageSchemeCfgDefn_zh_CN.properties │ │ │ ├── TripleDESPasswordStorageSchemeCfgDefn_zh_TW.properties │ │ │ ├── TrustManagerProviderCfgDefn.properties │ │ │ ├── TrustManagerProviderCfgDefn_ca_ES.properties │ │ │ ├── TrustManagerProviderCfgDefn_de.properties │ │ │ ├── TrustManagerProviderCfgDefn_es.properties │ │ │ ├── TrustManagerProviderCfgDefn_fr.properties │ │ │ ├── TrustManagerProviderCfgDefn_ja.properties │ │ │ ├── TrustManagerProviderCfgDefn_ko.properties │ │ │ ├── TrustManagerProviderCfgDefn_pl.properties │ │ │ ├── TrustManagerProviderCfgDefn_zh_CN.properties │ │ │ ├── TrustManagerProviderCfgDefn_zh_TW.properties │ │ │ ├── TrustStoreBackendCfgDefn.properties │ │ │ ├── TrustStoreBackendCfgDefn_de.properties │ │ │ ├── TrustStoreBackendCfgDefn_es.properties │ │ │ ├── TrustStoreBackendCfgDefn_fr.properties │ │ │ ├── TrustStoreBackendCfgDefn_ja.properties │ │ │ ├── TrustStoreBackendCfgDefn_ko.properties │ │ │ ├── TrustStoreBackendCfgDefn_zh_CN.properties │ │ │ ├── TrustStoreBackendCfgDefn_zh_TW.properties │ │ │ ├── UniqueAttributePluginCfgDefn.properties │ │ │ ├── UniqueAttributePluginCfgDefn_de.properties │ │ │ ├── UniqueAttributePluginCfgDefn_es.properties │ │ │ ├── UniqueAttributePluginCfgDefn_fr.properties │ │ │ ├── UniqueAttributePluginCfgDefn_ja.properties │ │ │ ├── UniqueAttributePluginCfgDefn_ko.properties │ │ │ ├── UniqueAttributePluginCfgDefn_pl.properties │ │ │ ├── UniqueAttributePluginCfgDefn_zh_CN.properties │ │ │ ├── UniqueAttributePluginCfgDefn_zh_TW.properties │ │ │ ├── UniqueCharactersPasswordValidatorCfgDefn.properties │ │ │ ├── UniqueCharactersPasswordValidatorCfgDefn_de.properties │ │ │ ├── UniqueCharactersPasswordValidatorCfgDefn_es.properties │ │ │ ├── UniqueCharactersPasswordValidatorCfgDefn_fr.properties │ │ │ ├── UniqueCharactersPasswordValidatorCfgDefn_ja.properties │ │ │ ├── UniqueCharactersPasswordValidatorCfgDefn_ko.properties │ │ │ ├── UniqueCharactersPasswordValidatorCfgDefn_pl.properties │ │ │ ├── UniqueCharactersPasswordValidatorCfgDefn_zh_CN.properties │ │ │ ├── UniqueCharactersPasswordValidatorCfgDefn_zh_TW.properties │ │ │ ├── UserDefinedVirtualAttributeCfgDefn.properties │ │ │ ├── UserDefinedVirtualAttributeCfgDefn_de.properties │ │ │ ├── UserDefinedVirtualAttributeCfgDefn_es.properties │ │ │ ├── UserDefinedVirtualAttributeCfgDefn_fr.properties │ │ │ ├── UserDefinedVirtualAttributeCfgDefn_ja.properties │ │ │ ├── UserDefinedVirtualAttributeCfgDefn_ko.properties │ │ │ ├── UserDefinedVirtualAttributeCfgDefn_pl.properties │ │ │ ├── UserDefinedVirtualAttributeCfgDefn_zh_CN.properties │ │ │ ├── UserDefinedVirtualAttributeCfgDefn_zh_TW.properties │ │ │ ├── VersionMonitorProviderCfgDefn.properties │ │ │ ├── VersionMonitorProviderCfgDefn_ca_ES.properties │ │ │ ├── VersionMonitorProviderCfgDefn_de.properties │ │ │ ├── VersionMonitorProviderCfgDefn_es.properties │ │ │ ├── VersionMonitorProviderCfgDefn_fr.properties │ │ │ ├── VersionMonitorProviderCfgDefn_ja.properties │ │ │ ├── VersionMonitorProviderCfgDefn_ko.properties │ │ │ ├── VersionMonitorProviderCfgDefn_pl.properties │ │ │ ├── VersionMonitorProviderCfgDefn_zh_CN.properties │ │ │ ├── VersionMonitorProviderCfgDefn_zh_TW.properties │ │ │ ├── VirtualAttributeCfgDefn.properties │ │ │ ├── VirtualAttributeCfgDefn_ca_ES.properties │ │ │ ├── VirtualAttributeCfgDefn_de.properties │ │ │ ├── VirtualAttributeCfgDefn_es.properties │ │ │ ├── VirtualAttributeCfgDefn_fr.properties │ │ │ ├── VirtualAttributeCfgDefn_ja.properties │ │ │ ├── VirtualAttributeCfgDefn_ko.properties │ │ │ ├── VirtualAttributeCfgDefn_pl.properties │ │ │ ├── VirtualAttributeCfgDefn_zh_CN.properties │ │ │ ├── VirtualAttributeCfgDefn_zh_TW.properties │ │ │ ├── VirtualStaticGroupImplementationCfgDefn.properties │ │ │ ├── VirtualStaticGroupImplementationCfgDefn_de.properties │ │ │ ├── VirtualStaticGroupImplementationCfgDefn_es.properties │ │ │ ├── VirtualStaticGroupImplementationCfgDefn_fr.properties │ │ │ ├── VirtualStaticGroupImplementationCfgDefn_ja.properties │ │ │ ├── VirtualStaticGroupImplementationCfgDefn_ko.properties │ │ │ ├── VirtualStaticGroupImplementationCfgDefn_zh_CN.properties │ │ │ ├── VirtualStaticGroupImplementationCfgDefn_zh_TW.properties │ │ │ ├── WhoAmIExtendedOperationHandlerCfgDefn.properties │ │ │ ├── WhoAmIExtendedOperationHandlerCfgDefn_de.properties │ │ │ ├── WhoAmIExtendedOperationHandlerCfgDefn_es.properties │ │ │ ├── WhoAmIExtendedOperationHandlerCfgDefn_fr.properties │ │ │ ├── WhoAmIExtendedOperationHandlerCfgDefn_ja.properties │ │ │ ├── WhoAmIExtendedOperationHandlerCfgDefn_ko.properties │ │ │ ├── WhoAmIExtendedOperationHandlerCfgDefn_zh_CN.properties │ │ │ ├── WhoAmIExtendedOperationHandlerCfgDefn_zh_TW.properties │ │ │ ├── WorkQueueCfgDefn.properties │ │ │ ├── WorkQueueCfgDefn_ca_ES.properties │ │ │ ├── WorkQueueCfgDefn_de.properties │ │ │ ├── WorkQueueCfgDefn_es.properties │ │ │ ├── WorkQueueCfgDefn_fr.properties │ │ │ ├── WorkQueueCfgDefn_ja.properties │ │ │ ├── WorkQueueCfgDefn_ko.properties │ │ │ ├── WorkQueueCfgDefn_pl.properties │ │ │ ├── WorkQueueCfgDefn_zh_CN.properties │ │ │ └── WorkQueueCfgDefn_zh_TW.properties │ ├── build-tools │ │ └── windows │ │ │ ├── EventLogMsg.mc │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── launcher_administrator.exe.manifest │ │ │ ├── opendj_service.exe.manifest │ │ │ ├── service.c │ │ │ ├── service.h │ │ │ ├── winlauncher.c │ │ │ └── winlauncher.h │ ├── main │ │ ├── assembly │ │ │ ├── example-plugin-assembly.xml │ │ │ ├── opendj-archive-assembly.xml │ │ │ ├── opendj-archive-component.xml │ │ │ ├── opendj-snmp-archive-assembly.xml │ │ │ └── snmp-jar-assembly.xml │ │ ├── docbkx │ │ │ └── man-pages │ │ │ │ ├── index.xml │ │ │ │ └── variablelist-backendstat-index-status.xml │ │ ├── java │ │ │ └── org │ │ │ │ ├── forgerock │ │ │ │ └── opendj │ │ │ │ │ ├── adapter │ │ │ │ │ └── server3x │ │ │ │ │ │ ├── Adapters.java │ │ │ │ │ │ ├── Converters.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── reactive │ │ │ │ │ ├── LDAPClientConnection2.java │ │ │ │ │ ├── LDAPConnectionHandler2.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── server │ │ │ │ │ └── embedded │ │ │ │ │ │ ├── ConfigParameters.java │ │ │ │ │ │ ├── ConnectionParameters.java │ │ │ │ │ │ ├── EmbeddedDirectoryServer.java │ │ │ │ │ │ ├── EmbeddedDirectoryServerException.java │ │ │ │ │ │ ├── ImportParameters.java │ │ │ │ │ │ ├── RebuildIndexParameters.java │ │ │ │ │ │ ├── ReplicationParameters.java │ │ │ │ │ │ ├── SetupParameters.java │ │ │ │ │ │ ├── UpgradeParameters.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── slf4j │ │ │ │ │ ├── OpenDJServiceProvider.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── opends │ │ │ │ ├── admin │ │ │ │ │ └── ads │ │ │ │ │ │ ├── ADSContext.java │ │ │ │ │ │ ├── ADSContextException.java │ │ │ │ │ │ ├── ADSContextHelper.java │ │ │ │ │ │ ├── ReplicaDescriptor.java │ │ │ │ │ │ ├── ServerDescriptor.java │ │ │ │ │ │ ├── SuffixDescriptor.java │ │ │ │ │ │ ├── TopologyCache.java │ │ │ │ │ │ ├── TopologyCacheException.java │ │ │ │ │ │ ├── TopologyCacheFilter.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── ApplicationKeyManager.java │ │ │ │ │ │ ├── ApplicationTrustManager.java │ │ │ │ │ │ ├── BlindHostnameVerifier.java │ │ │ │ │ │ ├── BlindTrustManager.java │ │ │ │ │ │ ├── ConnectionUtils.java │ │ │ │ │ │ ├── ConnectionWrapper.java │ │ │ │ │ │ ├── OpendsCertificateException.java │ │ │ │ │ │ ├── PreferredConnection.java │ │ │ │ │ │ ├── ServerLoader.java │ │ │ │ │ │ └── package-info.java │ │ │ │ ├── guitools │ │ │ │ │ ├── controlpanel │ │ │ │ │ │ ├── ControlPanel.java │ │ │ │ │ │ ├── ControlPanelArgumentParser.java │ │ │ │ │ │ ├── ControlPanelLauncher.java │ │ │ │ │ │ ├── browser │ │ │ │ │ │ │ ├── AbstractNodeTask.java │ │ │ │ │ │ │ ├── BasicNodeError.java │ │ │ │ │ │ │ ├── BrowserController.java │ │ │ │ │ │ │ ├── ConnectionWithControls.java │ │ │ │ │ │ │ ├── IconPool.java │ │ │ │ │ │ │ ├── LDAPConnectionPool.java │ │ │ │ │ │ │ ├── NodeRefresher.java │ │ │ │ │ │ │ ├── NodeSearcherQueue.java │ │ │ │ │ │ │ ├── SearchAbandonException.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── datamodel │ │ │ │ │ │ │ ├── AbstractIndexDescriptor.java │ │ │ │ │ │ │ ├── AbstractIndexTableModel.java │ │ │ │ │ │ │ ├── Action.java │ │ │ │ │ │ │ ├── BackendDescriptor.java │ │ │ │ │ │ │ ├── BackupDescriptor.java │ │ │ │ │ │ │ ├── BackupTableModel.java │ │ │ │ │ │ │ ├── BaseDNDescriptor.java │ │ │ │ │ │ │ ├── BaseDNTableModel.java │ │ │ │ │ │ │ ├── BasicMonitoringAttributes.java │ │ │ │ │ │ │ ├── BinaryValue.java │ │ │ │ │ │ │ ├── CannotRenameException.java │ │ │ │ │ │ │ ├── CategorizedComboBoxElement.java │ │ │ │ │ │ │ ├── Category.java │ │ │ │ │ │ │ ├── CheckEntrySyntaxException.java │ │ │ │ │ │ │ ├── ConfigReadException.java │ │ │ │ │ │ │ ├── ConnectionHandlerDescriptor.java │ │ │ │ │ │ │ ├── ConnectionHandlerTableModel.java │ │ │ │ │ │ │ ├── ConnectionHandlersMonitoringTableModel.java │ │ │ │ │ │ │ ├── ConnectionProtocolPolicy.java │ │ │ │ │ │ │ ├── ControlPanelInfo.java │ │ │ │ │ │ │ ├── DatabaseMonitoringTableModel.java │ │ │ │ │ │ │ ├── IndexDescriptor.java │ │ │ │ │ │ │ ├── IndexTableModel.java │ │ │ │ │ │ │ ├── MonitoringAttributes.java │ │ │ │ │ │ │ ├── MonitoringTableModel.java │ │ │ │ │ │ │ ├── ObjectClassValue.java │ │ │ │ │ │ │ ├── ScheduleType.java │ │ │ │ │ │ │ ├── ServerDescriptor.java │ │ │ │ │ │ │ ├── SortableListModel.java │ │ │ │ │ │ │ ├── SortableTableModel.java │ │ │ │ │ │ │ ├── TaskTableModel.java │ │ │ │ │ │ │ ├── VLVIndexDescriptor.java │ │ │ │ │ │ │ ├── VLVIndexTableModel.java │ │ │ │ │ │ │ ├── VLVSortOrder.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── event │ │ │ │ │ │ │ ├── BackendPopulatedEvent.java │ │ │ │ │ │ │ ├── BackendPopulatedListener.java │ │ │ │ │ │ │ ├── BackupCreatedEvent.java │ │ │ │ │ │ │ ├── BackupCreatedListener.java │ │ │ │ │ │ │ ├── BrowseActionListener.java │ │ │ │ │ │ │ ├── BrowserEvent.java │ │ │ │ │ │ │ ├── BrowserEventListener.java │ │ │ │ │ │ │ ├── ClickTooltipDisplayer.java │ │ │ │ │ │ │ ├── ComboKeySelectionManager.java │ │ │ │ │ │ │ ├── ConfigChangeListener.java │ │ │ │ │ │ │ ├── ConfigurationChangeEvent.java │ │ │ │ │ │ │ ├── ConfigurationElementCreatedEvent.java │ │ │ │ │ │ │ ├── ConfigurationElementCreatedListener.java │ │ │ │ │ │ │ ├── EntryReadErrorEvent.java │ │ │ │ │ │ │ ├── EntryReadEvent.java │ │ │ │ │ │ │ ├── EntryReadListener.java │ │ │ │ │ │ │ ├── IndexModifiedEvent.java │ │ │ │ │ │ │ ├── IndexModifiedListener.java │ │ │ │ │ │ │ ├── IndexSelectionEvent.java │ │ │ │ │ │ │ ├── IndexSelectionListener.java │ │ │ │ │ │ │ ├── LDAPEntryChangedEvent.java │ │ │ │ │ │ │ ├── LDAPEntryChangedListener.java │ │ │ │ │ │ │ ├── PrintStreamListener.java │ │ │ │ │ │ │ ├── ReferralAuthenticationListener.java │ │ │ │ │ │ │ ├── SchemaElementSelectionEvent.java │ │ │ │ │ │ │ ├── SchemaElementSelectionListener.java │ │ │ │ │ │ │ ├── ScrollPaneBorderListener.java │ │ │ │ │ │ │ ├── SuperiorObjectClassesChangedEvent.java │ │ │ │ │ │ │ ├── SuperiorObjectClassesChangedListener.java │ │ │ │ │ │ │ ├── TextComponentFocusListener.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── clear-filter-down.png │ │ │ │ │ │ │ ├── clear-filter.png │ │ │ │ │ │ │ ├── downarrow.png │ │ │ │ │ │ │ ├── ds-attr-folder.png │ │ │ │ │ │ │ ├── ds-attr.png │ │ │ │ │ │ │ ├── ds-class-folder.png │ │ │ │ │ │ │ ├── ds-class.png │ │ │ │ │ │ │ ├── ds-directory.png │ │ │ │ │ │ │ ├── ds-folder.png │ │ │ │ │ │ │ ├── ds-generic.png │ │ │ │ │ │ │ ├── ds-group.png │ │ │ │ │ │ │ ├── ds-idx-folder.png │ │ │ │ │ │ │ ├── ds-idx-ro.png │ │ │ │ │ │ │ ├── ds-idx.png │ │ │ │ │ │ │ ├── ds-ou.png │ │ │ │ │ │ │ ├── ds-ppol.png │ │ │ │ │ │ │ ├── ds-referral.png │ │ │ │ │ │ │ ├── ds-rule-folder.png │ │ │ │ │ │ │ ├── ds-rule.png │ │ │ │ │ │ │ ├── ds-suffix.png │ │ │ │ │ │ │ ├── ds-syntax-folder.png │ │ │ │ │ │ │ ├── ds-syntax.png │ │ │ │ │ │ │ ├── ds-user.png │ │ │ │ │ │ │ ├── ds-vlv-idx-folder.png │ │ │ │ │ │ │ ├── ds-vlv-idx.png │ │ │ │ │ │ │ ├── field-locked.png │ │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ │ ├── required.gif │ │ │ │ │ │ │ └── rightarrow.png │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ ├── task │ │ │ │ │ │ │ ├── AddToGroupTask.java │ │ │ │ │ │ │ ├── CancelTaskTask.java │ │ │ │ │ │ │ ├── DeleteBaseDNAndBackendTask.java │ │ │ │ │ │ │ ├── DeleteEntryTask.java │ │ │ │ │ │ │ ├── DeleteIndexTask.java │ │ │ │ │ │ │ ├── DeleteSchemaElementsTask.java │ │ │ │ │ │ │ ├── IndexTask.java │ │ │ │ │ │ │ ├── ModifyAttributeTask.java │ │ │ │ │ │ │ ├── ModifyEntryTask.java │ │ │ │ │ │ │ ├── ModifyObjectClassTask.java │ │ │ │ │ │ │ ├── NewEntryTask.java │ │ │ │ │ │ │ ├── NewSchemaElementsTask.java │ │ │ │ │ │ │ ├── OfflineUpdateException.java │ │ │ │ │ │ │ ├── OnlineUpdateException.java │ │ │ │ │ │ │ ├── RebuildIndexTask.java │ │ │ │ │ │ │ ├── ResetUserPasswordTask.java │ │ │ │ │ │ │ ├── RestartServerTask.java │ │ │ │ │ │ │ ├── StartServerTask.java │ │ │ │ │ │ │ ├── StartStopTask.java │ │ │ │ │ │ │ ├── StopServerTask.java │ │ │ │ │ │ │ ├── Task.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── ui │ │ │ │ │ │ │ ├── AbstractBackendIndexesPanel.java │ │ │ │ │ │ │ ├── AbstractBrowseEntriesPanel.java │ │ │ │ │ │ │ ├── AbstractIndexPanel.java │ │ │ │ │ │ │ ├── AbstractNewEntryPanel.java │ │ │ │ │ │ │ ├── AbstractVLVIndexPanel.java │ │ │ │ │ │ │ ├── AddToGroupPanel.java │ │ │ │ │ │ │ ├── AttributeSyntaxPanel.java │ │ │ │ │ │ │ ├── BackendIndexesPanel.java │ │ │ │ │ │ │ ├── BackendVLVIndexesPanel.java │ │ │ │ │ │ │ ├── BackupListPanel.java │ │ │ │ │ │ │ ├── BackupPanel.java │ │ │ │ │ │ │ ├── BaseDNPanel.java │ │ │ │ │ │ │ ├── BinaryAttributeEditorPanel.java │ │ │ │ │ │ │ ├── BinaryValuePanel.java │ │ │ │ │ │ │ ├── BrowseEntriesPanel.java │ │ │ │ │ │ │ ├── BrowseGeneralMonitoringPanel.java │ │ │ │ │ │ │ ├── BrowseIndexPanel.java │ │ │ │ │ │ │ ├── BrowseSchemaPanel.java │ │ │ │ │ │ │ ├── ColorAndFontConstants.java │ │ │ │ │ │ │ ├── ConfigurationAttributePanel.java │ │ │ │ │ │ │ ├── ConfigurationObjectClassPanel.java │ │ │ │ │ │ │ ├── ConnectionHandlerMonitoringPanel.java │ │ │ │ │ │ │ ├── ControlCenterMainPane.java │ │ │ │ │ │ │ ├── CustomAttributePanel.java │ │ │ │ │ │ │ ├── CustomObjectClassPanel.java │ │ │ │ │ │ │ ├── DatabaseMonitoringPanel.java │ │ │ │ │ │ │ ├── DeleteBackendPanel.java │ │ │ │ │ │ │ ├── DeleteBaseDNPanel.java │ │ │ │ │ │ │ ├── DuplicateEntryPanel.java │ │ │ │ │ │ │ ├── EntryCachesMonitoringPanel.java │ │ │ │ │ │ │ ├── ErrorSearchingEntryPanel.java │ │ │ │ │ │ │ ├── ExportLDIFPanel.java │ │ │ │ │ │ │ ├── GeneralMonitoringPanel.java │ │ │ │ │ │ │ ├── GeneralMonitoringRightPanel.java │ │ │ │ │ │ │ ├── GenericDialog.java │ │ │ │ │ │ │ ├── GenericFrame.java │ │ │ │ │ │ │ ├── GenericMenuBar.java │ │ │ │ │ │ │ ├── ImportLDIFPanel.java │ │ │ │ │ │ │ ├── InclusionExclusionPanel.java │ │ │ │ │ │ │ ├── IndexBrowserRightPanel.java │ │ │ │ │ │ │ ├── IndexPanel.java │ │ │ │ │ │ │ ├── JavaInformationMonitoringPanel.java │ │ │ │ │ │ │ ├── JavaPropertiesPanel.java │ │ │ │ │ │ │ ├── LDAPEntryPanel.java │ │ │ │ │ │ │ ├── LDAPEntrySelectionPanel.java │ │ │ │ │ │ │ ├── LDIFViewEntryPanel.java │ │ │ │ │ │ │ ├── LocalOrRemotePanel.java │ │ │ │ │ │ │ ├── LoginPanel.java │ │ │ │ │ │ │ ├── MainActionsPane.java │ │ │ │ │ │ │ ├── MainMenuBar.java │ │ │ │ │ │ │ ├── ManageTasksPanel.java │ │ │ │ │ │ │ ├── MatchingRulePanel.java │ │ │ │ │ │ │ ├── MonitoringAttributesViewPanel.java │ │ │ │ │ │ │ ├── NewAttributePanel.java │ │ │ │ │ │ │ ├── NewBaseDNPanel.java │ │ │ │ │ │ │ ├── NewDomainPanel.java │ │ │ │ │ │ │ ├── NewEntryFromLDIFPanel.java │ │ │ │ │ │ │ ├── NewGroupPanel.java │ │ │ │ │ │ │ ├── NewIndexPanel.java │ │ │ │ │ │ │ ├── NewObjectClassPanel.java │ │ │ │ │ │ │ ├── NewOrganizationPanel.java │ │ │ │ │ │ │ ├── NewOrganizationalUnitPanel.java │ │ │ │ │ │ │ ├── NewUserPanel.java │ │ │ │ │ │ │ ├── NewVLVIndexPanel.java │ │ │ │ │ │ │ ├── NoItemSelectedPanel.java │ │ │ │ │ │ │ ├── ObjectClassEditorPanel.java │ │ │ │ │ │ │ ├── ProgressDialog.java │ │ │ │ │ │ │ ├── RebuildIndexPanel.java │ │ │ │ │ │ │ ├── RefreshOptionsPanel.java │ │ │ │ │ │ │ ├── ResetUserPasswordPanel.java │ │ │ │ │ │ │ ├── RestorePanel.java │ │ │ │ │ │ │ ├── RootMonitoringPanel.java │ │ │ │ │ │ │ ├── SchemaBrowserRightPanel.java │ │ │ │ │ │ │ ├── SchemaElementPanel.java │ │ │ │ │ │ │ ├── SelectObjectClassesPanel.java │ │ │ │ │ │ │ ├── SimplifiedViewEntryPanel.java │ │ │ │ │ │ │ ├── StandardAttributePanel.java │ │ │ │ │ │ │ ├── StandardObjectClassPanel.java │ │ │ │ │ │ │ ├── StatusGenericPanel.java │ │ │ │ │ │ │ ├── StatusPanel.java │ │ │ │ │ │ │ ├── SystemInformationMonitoringPanel.java │ │ │ │ │ │ │ ├── TableViewEntryPanel.java │ │ │ │ │ │ │ ├── TaskToSchedulePanel.java │ │ │ │ │ │ │ ├── UnsavedChangesDialog.java │ │ │ │ │ │ │ ├── VLVIndexPanel.java │ │ │ │ │ │ │ ├── VerifyIndexPanel.java │ │ │ │ │ │ │ ├── ViewEntryPanel.java │ │ │ │ │ │ │ ├── WindowsServicePanel.java │ │ │ │ │ │ │ ├── WorkQueueMonitoringPanel.java │ │ │ │ │ │ │ ├── border │ │ │ │ │ │ │ │ ├── AccordionElementBorder.java │ │ │ │ │ │ │ │ ├── SelectedCategoryBorder.java │ │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── ActionButton.java │ │ │ │ │ │ │ │ ├── AddRemovePanel.java │ │ │ │ │ │ │ │ ├── BasicExpander.java │ │ │ │ │ │ │ │ ├── BinaryCellPanel.java │ │ │ │ │ │ │ │ ├── CategoryButton.java │ │ │ │ │ │ │ │ ├── CategoryPanel.java │ │ │ │ │ │ │ │ ├── CellEditorButton.java │ │ │ │ │ │ │ │ ├── CustomTree.java │ │ │ │ │ │ │ │ ├── DoubleAddRemovePanel.java │ │ │ │ │ │ │ │ ├── FilterTextField.java │ │ │ │ │ │ │ │ ├── LabelWithHelpIcon.java │ │ │ │ │ │ │ │ ├── NumericLimitedSizeDocumentFilter.java │ │ │ │ │ │ │ │ ├── ObjectClassCellPanel.java │ │ │ │ │ │ │ │ ├── ScheduleSummaryPanel.java │ │ │ │ │ │ │ │ ├── SelectableLabelWithHelpIcon.java │ │ │ │ │ │ │ │ ├── SuperiorObjectClassesEditor.java │ │ │ │ │ │ │ │ ├── TimeDocumentFilter.java │ │ │ │ │ │ │ │ ├── TitlePanel.java │ │ │ │ │ │ │ │ ├── TreePanel.java │ │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ │ ├── nodes │ │ │ │ │ │ │ │ ├── AbstractIndexTreeNode.java │ │ │ │ │ │ │ │ ├── AttributeSyntaxTreeNode.java │ │ │ │ │ │ │ │ ├── BasicNode.java │ │ │ │ │ │ │ │ ├── BrowserNodeInfo.java │ │ │ │ │ │ │ │ ├── CategoryTreeNode.java │ │ │ │ │ │ │ │ ├── ConfigurationAttributeTreeNode.java │ │ │ │ │ │ │ │ ├── ConfigurationObjectClassTreeNode.java │ │ │ │ │ │ │ │ ├── CustomAttributeTreeNode.java │ │ │ │ │ │ │ │ ├── CustomObjectClassTreeNode.java │ │ │ │ │ │ │ │ ├── DndBrowserNodes.java │ │ │ │ │ │ │ │ ├── GeneralMonitoringTreeNode.java │ │ │ │ │ │ │ │ ├── IndexTreeNode.java │ │ │ │ │ │ │ │ ├── MatchingRuleTreeNode.java │ │ │ │ │ │ │ │ ├── RootNode.java │ │ │ │ │ │ │ │ ├── SchemaElementTreeNode.java │ │ │ │ │ │ │ │ ├── StandardAttributeTreeNode.java │ │ │ │ │ │ │ │ ├── StandardObjectClassTreeNode.java │ │ │ │ │ │ │ │ ├── SuffixNode.java │ │ │ │ │ │ │ │ ├── VLVIndexTreeNode.java │ │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ │ ├── AccessibleTableHeaderRenderer.java │ │ │ │ │ │ │ │ ├── AttributeCellEditor.java │ │ │ │ │ │ │ │ ├── BackupTableCellRenderer.java │ │ │ │ │ │ │ │ ├── BaseDNCellRenderer.java │ │ │ │ │ │ │ │ ├── BrowserCellRenderer.java │ │ │ │ │ │ │ │ ├── CustomCellRenderer.java │ │ │ │ │ │ │ │ ├── CustomListCellRenderer.java │ │ │ │ │ │ │ │ ├── IndexCellRenderer.java │ │ │ │ │ │ │ │ ├── IndexComboBoxCellRenderer.java │ │ │ │ │ │ │ │ ├── LDAPEntryTableCellRenderer.java │ │ │ │ │ │ │ │ ├── NoLeftInsetCategoryComboBoxRenderer.java │ │ │ │ │ │ │ │ ├── SchemaElementComboBoxCellRenderer.java │ │ │ │ │ │ │ │ ├── SelectableTableCellRenderer.java │ │ │ │ │ │ │ │ ├── TaskCellRenderer.java │ │ │ │ │ │ │ │ ├── TreeCellRenderer.java │ │ │ │ │ │ │ │ ├── VLVSortOrderRenderer.java │ │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── ApplicationPrintStream.java │ │ │ │ │ │ │ ├── BackgroundTask.java │ │ │ │ │ │ │ ├── BackgroundTaskThread.java │ │ │ │ │ │ │ ├── BlindApplicationTrustManager.java │ │ │ │ │ │ │ ├── ConfigFromConnection.java │ │ │ │ │ │ │ ├── ConfigFromFile.java │ │ │ │ │ │ │ ├── ConfigReader.java │ │ │ │ │ │ │ ├── ControlPanelLog.java │ │ │ │ │ │ │ ├── LDAPEntryReader.java │ │ │ │ │ │ │ ├── LowerCaseComparator.java │ │ │ │ │ │ │ ├── NumSubordinateHacker.java │ │ │ │ │ │ │ ├── ProcessReader.java │ │ │ │ │ │ │ ├── RemoteSchemaLoader.java │ │ │ │ │ │ │ ├── SchemaLoader.java │ │ │ │ │ │ │ ├── Utilities.java │ │ │ │ │ │ │ ├── ViewPositions.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── uninstaller │ │ │ │ │ │ ├── UninstallCliHelper.java │ │ │ │ │ │ ├── UninstallData.java │ │ │ │ │ │ ├── UninstallLauncher.java │ │ │ │ │ │ ├── UninstallProgressStep.java │ │ │ │ │ │ ├── UninstallUserData.java │ │ │ │ │ │ ├── Uninstaller.java │ │ │ │ │ │ ├── UninstallerArgumentParser.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ └── ui │ │ │ │ │ │ ├── ConfirmUninstallPanel.java │ │ │ │ │ │ ├── LoginDialog.java │ │ │ │ │ │ └── package-info.java │ │ │ │ ├── quicksetup │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── ApplicationException.java │ │ │ │ │ ├── BuildInformation.java │ │ │ │ │ ├── ButtonName.java │ │ │ │ │ ├── CliApplication.java │ │ │ │ │ ├── Configuration.java │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── CurrentInstallStatus.java │ │ │ │ │ ├── Installation.java │ │ │ │ │ ├── JavaArguments.java │ │ │ │ │ ├── Launcher.java │ │ │ │ │ ├── LicenseFile.java │ │ │ │ │ ├── ProgressDescriptor.java │ │ │ │ │ ├── ProgressStep.java │ │ │ │ │ ├── ProgressUpdateListenerDelegate.java │ │ │ │ │ ├── QuickSetupCli.java │ │ │ │ │ ├── ReturnCode.java │ │ │ │ │ ├── SecurityOptions.java │ │ │ │ │ ├── SplashScreen.java │ │ │ │ │ ├── Status.java │ │ │ │ │ ├── Step.java │ │ │ │ │ ├── TempLogFile.java │ │ │ │ │ ├── UserData.java │ │ │ │ │ ├── UserDataCertificateException.java │ │ │ │ │ ├── UserDataConfirmationException.java │ │ │ │ │ ├── UserDataException.java │ │ │ │ │ ├── WizardStep.java │ │ │ │ │ ├── event │ │ │ │ │ │ ├── BrowseActionListener.java │ │ │ │ │ │ ├── ButtonActionListener.java │ │ │ │ │ │ ├── ButtonEvent.java │ │ │ │ │ │ ├── MinimumSizeComponentListener.java │ │ │ │ │ │ ├── ProgressNotifier.java │ │ │ │ │ │ ├── ProgressUpdateEvent.java │ │ │ │ │ │ ├── ProgressUpdateListener.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── images │ │ │ │ │ │ ├── currentstep.gif │ │ │ │ │ │ ├── currentstep.png │ │ │ │ │ │ ├── divider-left.png │ │ │ │ │ │ ├── divider-right.png │ │ │ │ │ │ ├── error.gif │ │ │ │ │ │ ├── error_large.gif │ │ │ │ │ │ ├── error_medium.gif │ │ │ │ │ │ ├── error_small.gif │ │ │ │ │ │ ├── help_large.gif │ │ │ │ │ │ ├── help_medium.gif │ │ │ │ │ │ ├── help_small.gif │ │ │ │ │ │ ├── info_large.gif │ │ │ │ │ │ ├── info_medium.gif │ │ │ │ │ │ ├── info_small.gif │ │ │ │ │ │ ├── information.gif │ │ │ │ │ │ ├── opendjbackground.png │ │ │ │ │ │ ├── opendjminimized.gif │ │ │ │ │ │ ├── opendjminimizedmac.png │ │ │ │ │ │ ├── opendjsplash.png │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ ├── wait.gif │ │ │ │ │ │ ├── wait_tiny.png │ │ │ │ │ │ ├── warning.gif │ │ │ │ │ │ ├── warning_large.gif │ │ │ │ │ │ ├── warning_medium.gif │ │ │ │ │ │ └── warning_small.gif │ │ │ │ │ ├── installer │ │ │ │ │ │ ├── AuthenticationData.java │ │ │ │ │ │ ├── ConfiguredDomain.java │ │ │ │ │ │ ├── ConfiguredReplication.java │ │ │ │ │ │ ├── DataReplicationOptions.java │ │ │ │ │ │ ├── InstallProgressStep.java │ │ │ │ │ │ ├── Installer.java │ │ │ │ │ │ ├── InstallerHelper.java │ │ │ │ │ │ ├── NewSuffixOptions.java │ │ │ │ │ │ ├── PeerNotFoundException.java │ │ │ │ │ │ ├── SetupLauncher.java │ │ │ │ │ │ ├── SuffixesToReplicateOptions.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── DataOptionsPanel.java │ │ │ │ │ │ │ ├── DataReplicationPanel.java │ │ │ │ │ │ │ ├── GlobalAdministratorPanel.java │ │ │ │ │ │ │ ├── InstallLicensePanel.java │ │ │ │ │ │ │ ├── InstallReviewPanel.java │ │ │ │ │ │ │ ├── InstallWelcomePanel.java │ │ │ │ │ │ │ ├── JavaArgumentsDialog.java │ │ │ │ │ │ │ ├── RemoteReplicationPortsPanel.java │ │ │ │ │ │ │ ├── RuntimeOptionsPanel.java │ │ │ │ │ │ │ ├── SecurityOptionsDialog.java │ │ │ │ │ │ │ ├── SelectAliasDialog.java │ │ │ │ │ │ │ ├── ServerSettingsPanel.java │ │ │ │ │ │ │ ├── SuffixesToReplicatePanel.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── ButtonsPanel.java │ │ │ │ │ │ ├── CertificateDialog.java │ │ │ │ │ │ ├── CurrentStepPanel.java │ │ │ │ │ │ ├── CustomHTMLEditorKit.java │ │ │ │ │ │ ├── FieldName.java │ │ │ │ │ │ ├── FinishedPanel.java │ │ │ │ │ │ ├── FramePanel.java │ │ │ │ │ │ ├── GuiApplication.java │ │ │ │ │ │ ├── LabelFieldDescriptor.java │ │ │ │ │ │ ├── ProgressDialog.java │ │ │ │ │ │ ├── ProgressPanel.java │ │ │ │ │ │ ├── QuickSetup.java │ │ │ │ │ │ ├── QuickSetupDialog.java │ │ │ │ │ │ ├── QuickSetupErrorPanel.java │ │ │ │ │ │ ├── QuickSetupPanel.java │ │ │ │ │ │ ├── QuickSetupStepPanel.java │ │ │ │ │ │ ├── ReviewPanel.java │ │ │ │ │ │ ├── StepsPanel.java │ │ │ │ │ │ ├── UIFactory.java │ │ │ │ │ │ ├── Utilities.java │ │ │ │ │ │ ├── WebBrowserErrorDialog.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── BackgroundTask.java │ │ │ │ │ │ ├── BackgroundTaskThread.java │ │ │ │ │ │ ├── ExtensionFileFilter.java │ │ │ │ │ │ ├── FileManager.java │ │ │ │ │ │ ├── HtmlProgressMessageFormatter.java │ │ │ │ │ │ ├── IncompatibleVersionException.java │ │ │ │ │ │ ├── OutputReader.java │ │ │ │ │ │ ├── PlainTextProgressMessageFormatter.java │ │ │ │ │ │ ├── ProgressMessageFormatter.java │ │ │ │ │ │ ├── ServerController.java │ │ │ │ │ │ ├── StandardOutputSuppressor.java │ │ │ │ │ │ ├── UIKeyStore.java │ │ │ │ │ │ ├── URLWorker.java │ │ │ │ │ │ ├── Utils.java │ │ │ │ │ │ ├── WebBrowserException.java │ │ │ │ │ │ ├── WebBrowserLauncher.java │ │ │ │ │ │ ├── ZipExtractor.java │ │ │ │ │ │ └── package-info.java │ │ │ │ └── server │ │ │ │ │ ├── admin │ │ │ │ │ ├── AdministrationDataSync.java │ │ │ │ │ ├── client │ │ │ │ │ │ └── cli │ │ │ │ │ │ │ ├── SecureConnectionCliArgs.java │ │ │ │ │ │ │ ├── SecureConnectionCliParser.java │ │ │ │ │ │ │ ├── TaskScheduleArgs.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── ConfigGuideGeneration.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── api │ │ │ │ │ ├── AccessControlHandler.java │ │ │ │ │ ├── AccountStatusNotificationHandler.java │ │ │ │ │ ├── AlertGenerator.java │ │ │ │ │ ├── AlertHandler.java │ │ │ │ │ ├── AuthenticationPolicy.java │ │ │ │ │ ├── AuthenticationPolicyFactory.java │ │ │ │ │ ├── AuthenticationPolicyState.java │ │ │ │ │ ├── Backend.java │ │ │ │ │ ├── BackupTaskListener.java │ │ │ │ │ ├── Backupable.java │ │ │ │ │ ├── CertificateMapper.java │ │ │ │ │ ├── ClientConnection.java │ │ │ │ │ ├── CompressedSchema.java │ │ │ │ │ ├── ConnectionHandler.java │ │ │ │ │ ├── DITCacheMap.java │ │ │ │ │ ├── DirectoryServerMBean.java │ │ │ │ │ ├── DirectoryThread.java │ │ │ │ │ ├── DiskSpaceMonitorHandler.java │ │ │ │ │ ├── EntryCache.java │ │ │ │ │ ├── ExportTaskListener.java │ │ │ │ │ ├── ExtendedOperationHandler.java │ │ │ │ │ ├── Group.java │ │ │ │ │ ├── HttpEndpoint.java │ │ │ │ │ ├── IdentityMapper.java │ │ │ │ │ ├── ImportTaskListener.java │ │ │ │ │ ├── InitializationCompletedListener.java │ │ │ │ │ ├── KeyManagerProvider.java │ │ │ │ │ ├── LocalBackend.java │ │ │ │ │ ├── LocalBackendInitializationListener.java │ │ │ │ │ ├── MonitorData.java │ │ │ │ │ ├── MonitorProvider.java │ │ │ │ │ ├── PasswordGenerator.java │ │ │ │ │ ├── PasswordStorageScheme.java │ │ │ │ │ ├── PasswordValidator.java │ │ │ │ │ ├── ProtocolElement.java │ │ │ │ │ ├── RestoreTaskListener.java │ │ │ │ │ ├── SASLMechanismHandler.java │ │ │ │ │ ├── ServerShutdownListener.java │ │ │ │ │ ├── SubentryChangeListener.java │ │ │ │ │ ├── SynchronizationProvider.java │ │ │ │ │ ├── TrustManagerProvider.java │ │ │ │ │ ├── VirtualAttributeProvider.java │ │ │ │ │ ├── WorkQueue.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── plugin │ │ │ │ │ │ ├── DirectoryServerPlugin.java │ │ │ │ │ │ ├── InternalDirectoryServerPlugin.java │ │ │ │ │ │ ├── PluginResult.java │ │ │ │ │ │ ├── PluginType.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── authorization │ │ │ │ │ ├── dseecompat │ │ │ │ │ │ ├── Aci.java │ │ │ │ │ │ ├── AciBody.java │ │ │ │ │ │ ├── AciContainer.java │ │ │ │ │ │ ├── AciEffectiveRights.java │ │ │ │ │ │ ├── AciEvalContext.java │ │ │ │ │ │ ├── AciException.java │ │ │ │ │ │ ├── AciHandler.java │ │ │ │ │ │ ├── AciLDAPOperationContainer.java │ │ │ │ │ │ ├── AciList.java │ │ │ │ │ │ ├── AciListenerManager.java │ │ │ │ │ │ ├── AciTargetMatchContext.java │ │ │ │ │ │ ├── AciTargets.java │ │ │ │ │ │ ├── AuthMethod.java │ │ │ │ │ │ ├── BindRule.java │ │ │ │ │ │ ├── DNS.java │ │ │ │ │ │ ├── DayOfWeek.java │ │ │ │ │ │ ├── EnumAccessType.java │ │ │ │ │ │ ├── EnumAuthMethod.java │ │ │ │ │ │ ├── EnumBindRuleKeyword.java │ │ │ │ │ │ ├── EnumBindRuleType.java │ │ │ │ │ │ ├── EnumBooleanTypes.java │ │ │ │ │ │ ├── EnumDayOfWeek.java │ │ │ │ │ │ ├── EnumEvalReason.java │ │ │ │ │ │ ├── EnumEvalResult.java │ │ │ │ │ │ ├── EnumRight.java │ │ │ │ │ │ ├── EnumTargetKeyword.java │ │ │ │ │ │ ├── EnumTargetOperator.java │ │ │ │ │ │ ├── EnumUserDNType.java │ │ │ │ │ │ ├── ExtOp.java │ │ │ │ │ │ ├── GroupDN.java │ │ │ │ │ │ ├── IP.java │ │ │ │ │ │ ├── KeywordBindRule.java │ │ │ │ │ │ ├── ParentInheritance.java │ │ │ │ │ │ ├── PatternDN.java │ │ │ │ │ │ ├── PatternIP.java │ │ │ │ │ │ ├── PatternRDN.java │ │ │ │ │ │ ├── PermBindRulePair.java │ │ │ │ │ │ ├── Permission.java │ │ │ │ │ │ ├── SSF.java │ │ │ │ │ │ ├── TargAttrFilterList.java │ │ │ │ │ │ ├── TargAttrFilters.java │ │ │ │ │ │ ├── Target.java │ │ │ │ │ │ ├── TargetAttr.java │ │ │ │ │ │ ├── TargetControl.java │ │ │ │ │ │ ├── TargetFilter.java │ │ │ │ │ │ ├── TimeOfDay.java │ │ │ │ │ │ ├── UserAttr.java │ │ │ │ │ │ ├── UserDN.java │ │ │ │ │ │ ├── UserDNTypeURL.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── backends │ │ │ │ │ ├── BackupBackend.java │ │ │ │ │ ├── ChangelogBackend.java │ │ │ │ │ ├── ConfigurationBackend.java │ │ │ │ │ ├── LDIFBackend.java │ │ │ │ │ ├── MemoryBackend.java │ │ │ │ │ ├── MonitorBackend.java │ │ │ │ │ ├── NullBackend.java │ │ │ │ │ ├── RebuildConfig.java │ │ │ │ │ ├── RootDSEBackend.java │ │ │ │ │ ├── SchemaBackend.java │ │ │ │ │ ├── TrustStoreBackend.java │ │ │ │ │ ├── VerifyConfig.java │ │ │ │ │ ├── cassandra │ │ │ │ │ │ ├── Backend.java │ │ │ │ │ │ ├── Storage.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── jdbc │ │ │ │ │ │ ├── Backend.java │ │ │ │ │ │ ├── CachedConnection.java │ │ │ │ │ │ ├── Storage.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── jeb │ │ │ │ │ │ ├── ConfigurableEnvironment.java │ │ │ │ │ │ ├── JEBackend.java │ │ │ │ │ │ ├── JEMonitor.java │ │ │ │ │ │ ├── JEStorage.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── pdb │ │ │ │ │ │ ├── PDBBackend.java │ │ │ │ │ │ ├── PDBMonitor.java │ │ │ │ │ │ ├── PDBStorage.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── pluggable │ │ │ │ │ │ ├── AbstractTree.java │ │ │ │ │ │ ├── AttributeIndex.java │ │ │ │ │ │ ├── BackendImpl.java │ │ │ │ │ │ ├── BackendMonitor.java │ │ │ │ │ │ ├── BackendStat.java │ │ │ │ │ │ ├── CursorTransformer.java │ │ │ │ │ │ ├── DN2ID.java │ │ │ │ │ │ ├── DN2URI.java │ │ │ │ │ │ ├── DataConfig.java │ │ │ │ │ │ ├── DefaultIndex.java │ │ │ │ │ │ ├── DnKeyFormat.java │ │ │ │ │ │ ├── EntryContainer.java │ │ │ │ │ │ ├── EntryID.java │ │ │ │ │ │ ├── EntryIDSet.java │ │ │ │ │ │ ├── ExportJob.java │ │ │ │ │ │ ├── ID2ChildrenCount.java │ │ │ │ │ │ ├── ID2Entry.java │ │ │ │ │ │ ├── ImportLDIFReader.java │ │ │ │ │ │ ├── ImportStrategy.java │ │ │ │ │ │ ├── Index.java │ │ │ │ │ │ ├── IndexBuffer.java │ │ │ │ │ │ ├── IndexFilter.java │ │ │ │ │ │ ├── IndexQuery.java │ │ │ │ │ │ ├── IndexQueryFactoryImpl.java │ │ │ │ │ │ ├── OnDiskMergeImporter.java │ │ │ │ │ │ ├── PersistentCompressedSchema.java │ │ │ │ │ │ ├── RootContainer.java │ │ │ │ │ │ ├── ShardedCounter.java │ │ │ │ │ │ ├── State.java │ │ │ │ │ │ ├── SuffixContainer.java │ │ │ │ │ │ ├── TracedStorage.java │ │ │ │ │ │ ├── Tree.java │ │ │ │ │ │ ├── TreePreloadComparator.java │ │ │ │ │ │ ├── VLVIndex.java │ │ │ │ │ │ ├── VerifyJob.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ └── spi │ │ │ │ │ │ │ ├── AccessMode.java │ │ │ │ │ │ │ ├── Cursor.java │ │ │ │ │ │ │ ├── EmptyCursor.java │ │ │ │ │ │ │ ├── Importer.java │ │ │ │ │ │ │ ├── ReadOnlyStorageException.java │ │ │ │ │ │ │ ├── ReadOperation.java │ │ │ │ │ │ │ ├── ReadableTransaction.java │ │ │ │ │ │ │ ├── SequentialCursor.java │ │ │ │ │ │ │ ├── Storage.java │ │ │ │ │ │ │ ├── StorageInUseException.java │ │ │ │ │ │ │ ├── StorageRuntimeException.java │ │ │ │ │ │ │ ├── StorageStatus.java │ │ │ │ │ │ │ ├── StorageUtils.java │ │ │ │ │ │ │ ├── TreeName.java │ │ │ │ │ │ │ ├── UpdateFunction.java │ │ │ │ │ │ │ ├── WriteOperation.java │ │ │ │ │ │ │ ├── WriteableTransaction.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── task │ │ │ │ │ │ ├── FailedDependencyAction.java │ │ │ │ │ │ ├── RecurringTask.java │ │ │ │ │ │ ├── Task.java │ │ │ │ │ │ ├── TaskBackend.java │ │ │ │ │ │ ├── TaskScheduler.java │ │ │ │ │ │ ├── TaskState.java │ │ │ │ │ │ ├── TaskThread.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── config │ │ │ │ │ ├── AdministrationConnector.java │ │ │ │ │ ├── ConfigConstants.java │ │ │ │ │ ├── ConfigException.java │ │ │ │ │ ├── ConfigurationHandler.java │ │ │ │ │ ├── Expression.java │ │ │ │ │ ├── Functions.java │ │ │ │ │ ├── JMXMBean.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── controls │ │ │ │ │ ├── AccountUsableRequestControl.java │ │ │ │ │ ├── AccountUsableResponseControl.java │ │ │ │ │ ├── AuthorizationIdentityResponseControl.java │ │ │ │ │ ├── ControlDecoder.java │ │ │ │ │ ├── EntryChangeNotificationControl.java │ │ │ │ │ ├── EntryChangelogNotificationControl.java │ │ │ │ │ ├── ExternalChangelogRequestControl.java │ │ │ │ │ ├── GetEffectiveRightsRequestControl.java │ │ │ │ │ ├── LDAPAssertionRequestControl.java │ │ │ │ │ ├── LDAPPostReadRequestControl.java │ │ │ │ │ ├── LDAPPostReadResponseControl.java │ │ │ │ │ ├── LDAPPreReadRequestControl.java │ │ │ │ │ ├── LDAPPreReadResponseControl.java │ │ │ │ │ ├── MatchedValuesControl.java │ │ │ │ │ ├── MatchedValuesFilter.java │ │ │ │ │ ├── PagedResultsControl.java │ │ │ │ │ ├── PasswordExpiredControl.java │ │ │ │ │ ├── PasswordExpiringControl.java │ │ │ │ │ ├── PasswordPolicyErrorType.java │ │ │ │ │ ├── PasswordPolicyRequestControl.java │ │ │ │ │ ├── PasswordPolicyResponseControl.java │ │ │ │ │ ├── PasswordPolicyWarningType.java │ │ │ │ │ ├── PersistentSearchChangeType.java │ │ │ │ │ ├── PersistentSearchControl.java │ │ │ │ │ ├── ProxiedAuthV1Control.java │ │ │ │ │ ├── ProxiedAuthV2Control.java │ │ │ │ │ ├── ServerSideSortRequestControl.java │ │ │ │ │ ├── ServerSideSortResponseControl.java │ │ │ │ │ ├── SubentriesControl.java │ │ │ │ │ ├── SubtreeDeleteControl.java │ │ │ │ │ ├── TransactionIdControl.java │ │ │ │ │ ├── VLVRequestControl.java │ │ │ │ │ ├── VLVResponseControl.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── core │ │ │ │ │ ├── AbandonOperation.java │ │ │ │ │ ├── AbandonOperationBasis.java │ │ │ │ │ ├── AbandonOperationWrapper.java │ │ │ │ │ ├── AccessControlConfigManager.java │ │ │ │ │ ├── AccountStatusNotificationHandlerConfigManager.java │ │ │ │ │ ├── AddOperation.java │ │ │ │ │ ├── AddOperationBasis.java │ │ │ │ │ ├── AddOperationWrapper.java │ │ │ │ │ ├── AlertHandlerConfigManager.java │ │ │ │ │ ├── AuthenticatedUsers.java │ │ │ │ │ ├── BackendConfigManager.java │ │ │ │ │ ├── BindOperation.java │ │ │ │ │ ├── BindOperationBasis.java │ │ │ │ │ ├── BindOperationWrapper.java │ │ │ │ │ ├── BoundedWorkQueueStrategy.java │ │ │ │ │ ├── CertificateMapperConfigManager.java │ │ │ │ │ ├── CompareOperation.java │ │ │ │ │ ├── CompareOperationBasis.java │ │ │ │ │ ├── CompareOperationWrapper.java │ │ │ │ │ ├── ConnectionHandlerConfigManager.java │ │ │ │ │ ├── CoreConfigManager.java │ │ │ │ │ ├── DefaultAccessControlHandler.java │ │ │ │ │ ├── DefaultCompressedSchema.java │ │ │ │ │ ├── DeleteOperation.java │ │ │ │ │ ├── DeleteOperationBasis.java │ │ │ │ │ ├── DeleteOperationWrapper.java │ │ │ │ │ ├── DirectoryServer.java │ │ │ │ │ ├── DirectoryServerShutdownHook.java │ │ │ │ │ ├── EntryCacheConfigManager.java │ │ │ │ │ ├── ExtendedOperation.java │ │ │ │ │ ├── ExtendedOperationBasis.java │ │ │ │ │ ├── ExtendedOperationConfigManager.java │ │ │ │ │ ├── ExtendedOperationWrapper.java │ │ │ │ │ ├── GroupManager.java │ │ │ │ │ ├── HttpEndpointConfigManager.java │ │ │ │ │ ├── IdentityMapperConfigManager.java │ │ │ │ │ ├── IdleTimeLimitThread.java │ │ │ │ │ ├── KeyManagerProviderConfigManager.java │ │ │ │ │ ├── LockFileManager.java │ │ │ │ │ ├── LogRetentionPolicyConfigManager.java │ │ │ │ │ ├── LogRotationPolicyConfigManager.java │ │ │ │ │ ├── LoggerConfigManager.java │ │ │ │ │ ├── MemoryQuota.java │ │ │ │ │ ├── ModifyDNOperation.java │ │ │ │ │ ├── ModifyDNOperationBasis.java │ │ │ │ │ ├── ModifyDNOperationWrapper.java │ │ │ │ │ ├── ModifyOperation.java │ │ │ │ │ ├── ModifyOperationBasis.java │ │ │ │ │ ├── ModifyOperationWrapper.java │ │ │ │ │ ├── MonitorConfigManager.java │ │ │ │ │ ├── OperationWrapper.java │ │ │ │ │ ├── PasswordGeneratorConfigManager.java │ │ │ │ │ ├── PasswordPolicy.java │ │ │ │ │ ├── PasswordPolicyConfigManager.java │ │ │ │ │ ├── PasswordPolicyFactory.java │ │ │ │ │ ├── PasswordPolicyState.java │ │ │ │ │ ├── PasswordStorageSchemeConfigManager.java │ │ │ │ │ ├── PasswordValidatorConfigManager.java │ │ │ │ │ ├── PersistentSearch.java │ │ │ │ │ ├── PluginConfigManager.java │ │ │ │ │ ├── QueueingStrategy.java │ │ │ │ │ ├── RootDNConfigManager.java │ │ │ │ │ ├── RootPrivilegeChangeListener.java │ │ │ │ │ ├── SASLConfigManager.java │ │ │ │ │ ├── SearchOperation.java │ │ │ │ │ ├── SearchOperationBasis.java │ │ │ │ │ ├── SearchOperationWrapper.java │ │ │ │ │ ├── ServerContext.java │ │ │ │ │ ├── ServerShutdownMonitor.java │ │ │ │ │ ├── SubentryManager.java │ │ │ │ │ ├── SubentryPasswordPolicy.java │ │ │ │ │ ├── SynchronizationProviderConfigManager.java │ │ │ │ │ ├── SynchronousStrategy.java │ │ │ │ │ ├── TrustManagerProviderConfigManager.java │ │ │ │ │ ├── UnbindOperation.java │ │ │ │ │ ├── UnbindOperationBasis.java │ │ │ │ │ ├── UnbindOperationWrapper.java │ │ │ │ │ ├── VirtualAttributeConfigManager.java │ │ │ │ │ ├── WorkQueueConfigManager.java │ │ │ │ │ ├── WorkQueueStrategy.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── crypto │ │ │ │ │ ├── CryptoManagerImpl.java │ │ │ │ │ ├── CryptoManagerSync.java │ │ │ │ │ ├── CryptoSuite.java │ │ │ │ │ ├── GetSymmetricKeyExtendedOperation.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── discovery │ │ │ │ │ ├── Partition.java │ │ │ │ │ ├── ServiceDiscoveryChangeListener.java │ │ │ │ │ ├── ServiceDiscoveryMechanism.java │ │ │ │ │ ├── ServiceDiscoveryMechanismConfigManager.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── extensions │ │ │ │ │ ├── AESPasswordStorageScheme.java │ │ │ │ │ ├── AbstractPBKDF2PasswordStorageScheme.java │ │ │ │ │ ├── AnonymousSASLMechanismHandler.java │ │ │ │ │ ├── AttributeValuePasswordValidator.java │ │ │ │ │ ├── BCrypt.java │ │ │ │ │ ├── Base64PasswordStorageScheme.java │ │ │ │ │ ├── BcryptPasswordStorageScheme.java │ │ │ │ │ ├── BlindTrustManagerProvider.java │ │ │ │ │ ├── BlowfishPasswordStorageScheme.java │ │ │ │ │ ├── CRAMMD5SASLMechanismHandler.java │ │ │ │ │ ├── CancelExtendedOperation.java │ │ │ │ │ ├── CertificateValidationPolicy.java │ │ │ │ │ ├── CharacterSetPasswordValidator.java │ │ │ │ │ ├── ClearPasswordStorageScheme.java │ │ │ │ │ ├── CollectiveAttributeSubentriesVirtualAttributeProvider.java │ │ │ │ │ ├── ConnectionSecurityProvider.java │ │ │ │ │ ├── CryptPasswordStorageScheme.java │ │ │ │ │ ├── DefaultEntryCache.java │ │ │ │ │ ├── DictionaryPasswordValidator.java │ │ │ │ │ ├── DigestMD5SASLMechanismHandler.java │ │ │ │ │ ├── DiskSpaceMonitor.java │ │ │ │ │ ├── DynamicGroup.java │ │ │ │ │ ├── DynamicGroupMemberList.java │ │ │ │ │ ├── DynamicGroupSearchThread.java │ │ │ │ │ ├── EndTransactionExtendedOperation.java │ │ │ │ │ ├── EntityTagVirtualAttributeProvider.java │ │ │ │ │ ├── EntryCacheCommon.java │ │ │ │ │ ├── EntryDNVirtualAttributeProvider.java │ │ │ │ │ ├── EntryUUIDVirtualAttributeProvider.java │ │ │ │ │ ├── ErrorLogAccountStatusNotificationHandler.java │ │ │ │ │ ├── ExactMatchIdentityMapper.java │ │ │ │ │ ├── ExtensionsConstants.java │ │ │ │ │ ├── ExternalSASLMechanismHandler.java │ │ │ │ │ ├── FIFOEntryCache.java │ │ │ │ │ ├── FileBasedKeyManagerProvider.java │ │ │ │ │ ├── FileBasedTrustManagerProvider.java │ │ │ │ │ ├── FilteredStaticGroupMemberList.java │ │ │ │ │ ├── FingerprintCertificateMapper.java │ │ │ │ │ ├── GSSAPISASLMechanismHandler.java │ │ │ │ │ ├── GetConnectionIDExtendedOperation.java │ │ │ │ │ ├── GoverningStructureRuleVirtualAttributeProvider.java │ │ │ │ │ ├── HasSubordinatesVirtualAttributeProvider.java │ │ │ │ │ ├── IsMemberOfVirtualAttributeProvider.java │ │ │ │ │ ├── JMXAlertHandler.java │ │ │ │ │ ├── LDAPKeyManagerProvider.java │ │ │ │ │ ├── LDAPPassThroughAuthenticationPolicyFactory.java │ │ │ │ │ ├── LDAPTrustManagerProvider.java │ │ │ │ │ ├── LengthBasedPasswordValidator.java │ │ │ │ │ ├── MD5PasswordStorageScheme.java │ │ │ │ │ ├── MemberVirtualAttributeProvider.java │ │ │ │ │ ├── NotificationMessageNotificationMessageTemplateElement.java │ │ │ │ │ ├── NotificationMessageTemplateElement.java │ │ │ │ │ ├── NotificationPropertyNotificationMessageTemplateElement.java │ │ │ │ │ ├── NotificationTypeNotificationMessageTemplateElement.java │ │ │ │ │ ├── NullKeyManagerProvider.java │ │ │ │ │ ├── NumSubordinatesVirtualAttributeProvider.java │ │ │ │ │ ├── PBKDF2HmacSHA256PasswordStorageScheme.java │ │ │ │ │ ├── PBKDF2HmacSHA512PasswordStorageScheme.java │ │ │ │ │ ├── PBKDF2PasswordStorageScheme.java │ │ │ │ │ ├── PKCS11KeyManagerProvider.java │ │ │ │ │ ├── PKCS11TrustManagerProvider.java │ │ │ │ │ ├── PKCS5S2PasswordStorageScheme.java │ │ │ │ │ ├── ParallelWorkQueue.java │ │ │ │ │ ├── ParallelWorkerThread.java │ │ │ │ │ ├── PasswordExpirationTimeVirtualAttributeProvider.java │ │ │ │ │ ├── PasswordModifyExtendedOperation.java │ │ │ │ │ ├── PasswordPolicyStateExtendedOperation.java │ │ │ │ │ ├── PasswordPolicySubentryVirtualAttributeProvider.java │ │ │ │ │ ├── PlainSASLMechanismHandler.java │ │ │ │ │ ├── RC4PasswordStorageScheme.java │ │ │ │ │ ├── RandomPasswordGenerator.java │ │ │ │ │ ├── RedirectingByteChannel.java │ │ │ │ │ ├── RegularExpressionIdentityMapper.java │ │ │ │ │ ├── RepeatedCharactersPasswordValidator.java │ │ │ │ │ ├── SASLByteChannel.java │ │ │ │ │ ├── SASLContext.java │ │ │ │ │ ├── SHA1PasswordStorageScheme.java │ │ │ │ │ ├── SMTPAccountStatusNotificationHandler.java │ │ │ │ │ ├── SMTPAlertHandler.java │ │ │ │ │ ├── SaltedMD5PasswordStorageScheme.java │ │ │ │ │ ├── SaltedSHA1PasswordStorageScheme.java │ │ │ │ │ ├── SaltedSHA256PasswordStorageScheme.java │ │ │ │ │ ├── SaltedSHA384PasswordStorageScheme.java │ │ │ │ │ ├── SaltedSHA512PasswordStorageScheme.java │ │ │ │ │ ├── Sha2Crypt.java │ │ │ │ │ ├── SimilarityBasedPasswordValidator.java │ │ │ │ │ ├── SimpleStaticGroupMemberList.java │ │ │ │ │ ├── SoftReferenceEntryCache.java │ │ │ │ │ ├── StartTLSExtendedOperation.java │ │ │ │ │ ├── StartTransactionExtendedOperation.java │ │ │ │ │ ├── StaticGroup.java │ │ │ │ │ ├── StructuralObjectClassVirtualAttributeProvider.java │ │ │ │ │ ├── SubjectAttributeToUserAttributeCertificateMapper.java │ │ │ │ │ ├── SubjectDNToUserAttributeCertificateMapper.java │ │ │ │ │ ├── SubjectEqualsDNCertificateMapper.java │ │ │ │ │ ├── SubschemaSubentryVirtualAttributeProvider.java │ │ │ │ │ ├── TLSByteChannel.java │ │ │ │ │ ├── TLSCapableConnection.java │ │ │ │ │ ├── TextNotificationMessageTemplateElement.java │ │ │ │ │ ├── TraditionalWorkQueue.java │ │ │ │ │ ├── TraditionalWorkerThread.java │ │ │ │ │ ├── TripleDESPasswordStorageScheme.java │ │ │ │ │ ├── UniqueCharactersPasswordValidator.java │ │ │ │ │ ├── UserAttributeNotificationMessageTemplateElement.java │ │ │ │ │ ├── UserDNNotificationMessageTemplateElement.java │ │ │ │ │ ├── UserDefinedVirtualAttributeProvider.java │ │ │ │ │ ├── VirtualStaticGroup.java │ │ │ │ │ ├── WhoAmIExtendedOperation.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── loggers │ │ │ │ │ ├── AbstractLogger.java │ │ │ │ │ ├── AbstractTextAccessLogPublisher.java │ │ │ │ │ ├── AccessLogPublisher.java │ │ │ │ │ ├── AccessLogger.java │ │ │ │ │ ├── AsynchronousTextWriter.java │ │ │ │ │ ├── CommonAudit.java │ │ │ │ │ ├── CommonAuditAccessLogPublisher.java │ │ │ │ │ ├── CommonAuditDependencyProvider.java │ │ │ │ │ ├── CommonAuditHTTPAccessLogPublisher.java │ │ │ │ │ ├── CommonAuditLogPublisher.java │ │ │ │ │ ├── ConsoleDebugLogPublisher.java │ │ │ │ │ ├── CsvFileAccessLogPublisher.java │ │ │ │ │ ├── DebugLogPublisher.java │ │ │ │ │ ├── DebugLogger.java │ │ │ │ │ ├── DebugMessageFormatter.java │ │ │ │ │ ├── DebugStackTraceFormatter.java │ │ │ │ │ ├── DebugTracer.java │ │ │ │ │ ├── EncryptAction.java │ │ │ │ │ ├── ErrorLogPublisher.java │ │ │ │ │ ├── ErrorLogger.java │ │ │ │ │ ├── ExternalAccessLogPublisher.java │ │ │ │ │ ├── FileComparator.java │ │ │ │ │ ├── FileNamingPolicy.java │ │ │ │ │ ├── FileNumberRetentionPolicy.java │ │ │ │ │ ├── FixedTimeRotationPolicy.java │ │ │ │ │ ├── FreeDiskSpaceRetentionPolicy.java │ │ │ │ │ ├── GZIPAction.java │ │ │ │ │ ├── HTTPAccessLogPublisher.java │ │ │ │ │ ├── HTTPAccessLogger.java │ │ │ │ │ ├── HTTPRequestInfo.java │ │ │ │ │ ├── JDKLogging.java │ │ │ │ │ ├── JDKLoggingFormater.java │ │ │ │ │ ├── JsonFileAccessLogPublisher.java │ │ │ │ │ ├── LogPublisher.java │ │ │ │ │ ├── LogPublisherErrorHandler.java │ │ │ │ │ ├── LoggingCategoryNames.java │ │ │ │ │ ├── MeteredStream.java │ │ │ │ │ ├── MultifileTextWriter.java │ │ │ │ │ ├── OpenDJAccessEventBuilder.java │ │ │ │ │ ├── PostRotationAction.java │ │ │ │ │ ├── RetentionPolicy.java │ │ │ │ │ ├── RotatableLogFile.java │ │ │ │ │ ├── RotationPolicy.java │ │ │ │ │ ├── SizeBasedRetentionPolicy.java │ │ │ │ │ ├── SizeBasedRotationPolicy.java │ │ │ │ │ ├── TextAccessLogPublisher.java │ │ │ │ │ ├── TextAuditLogPublisher.java │ │ │ │ │ ├── TextDebugLogPublisher.java │ │ │ │ │ ├── TextErrorLogPublisher.java │ │ │ │ │ ├── TextHTTPAccessLogPublisher.java │ │ │ │ │ ├── TextWriter.java │ │ │ │ │ ├── ThreadFilterTextErrorLogPublisher.java │ │ │ │ │ ├── TimeLimitRotationPolicy.java │ │ │ │ │ ├── TimeStampNaming.java │ │ │ │ │ ├── TraceSettings.java │ │ │ │ │ ├── ZIPAction.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── slf4j │ │ │ │ │ │ ├── OpenDJLoggerAdapter.java │ │ │ │ │ │ ├── OpenDJLoggerFactory.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── monitors │ │ │ │ │ ├── ClientConnectionMonitorProvider.java │ │ │ │ │ ├── ConnectionHandlerMonitor.java │ │ │ │ │ ├── EntryCacheMonitorProvider.java │ │ │ │ │ ├── LocalBackendMonitor.java │ │ │ │ │ ├── MemoryUsageMonitorProvider.java │ │ │ │ │ ├── ParallelWorkQueueMonitor.java │ │ │ │ │ ├── StackTraceMonitorProvider.java │ │ │ │ │ ├── SystemInfoMonitorProvider.java │ │ │ │ │ ├── TraditionalWorkQueueMonitor.java │ │ │ │ │ ├── VersionMonitorProvider.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── plugins │ │ │ │ │ ├── AttributeCleanupPlugin.java │ │ │ │ │ ├── ChangeNumberControlPlugin.java │ │ │ │ │ ├── EntryUUIDPlugin.java │ │ │ │ │ ├── LDAPADListPlugin.java │ │ │ │ │ ├── LastModPlugin.java │ │ │ │ │ ├── PasswordPolicyImportPlugin.java │ │ │ │ │ ├── ReferentialIntegrityPlugin.java │ │ │ │ │ ├── SambaPasswordPlugin.java │ │ │ │ │ ├── SevenBitCleanPlugin.java │ │ │ │ │ ├── UniqueAttributePlugin.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── profiler │ │ │ │ │ │ ├── ProfileStack.java │ │ │ │ │ │ ├── ProfileStackFrame.java │ │ │ │ │ │ ├── ProfileViewer.java │ │ │ │ │ │ ├── ProfilerPlugin.java │ │ │ │ │ │ ├── ProfilerThread.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── protocols │ │ │ │ │ ├── LDIFConnectionHandler.java │ │ │ │ │ ├── asn1 │ │ │ │ │ │ ├── GSERException.java │ │ │ │ │ │ ├── GSERParser.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── http │ │ │ │ │ │ ├── AllowDenyFilter.java │ │ │ │ │ │ ├── CommonAuditHttpAccessAuditFilter.java │ │ │ │ │ │ ├── CommonAuditHttpAccessCheckEnabledFilter.java │ │ │ │ │ │ ├── CommonAuditTransactionIdFilter.java │ │ │ │ │ │ ├── HTTPClientConnection.java │ │ │ │ │ │ ├── HTTPConnectionHandler.java │ │ │ │ │ │ ├── HTTPStatistics.java │ │ │ │ │ │ ├── HTTPStatsProbe.java │ │ │ │ │ │ ├── HttpAccessLogFilter.java │ │ │ │ │ │ ├── HttpLogContext.java │ │ │ │ │ │ ├── LDAPContext.java │ │ │ │ │ │ ├── LDAPContextInjectionFilter.java │ │ │ │ │ │ ├── LocalizedHttpApplicationException.java │ │ │ │ │ │ ├── SdkConnectionAdapter.java │ │ │ │ │ │ ├── authz │ │ │ │ │ │ │ ├── HttpAnonymousAuthorizationMechanism.java │ │ │ │ │ │ │ ├── HttpAuthorizationMechanism.java │ │ │ │ │ │ │ ├── HttpAuthorizationMechanismFactory.java │ │ │ │ │ │ │ ├── HttpBasicAuthorizationMechanism.java │ │ │ │ │ │ │ ├── HttpOAuth2AuthorizationMechanism.java │ │ │ │ │ │ │ ├── HttpOAuth2CtsAuthorizationMechanism.java │ │ │ │ │ │ │ ├── HttpOAuth2FileAuthorizationMechanism.java │ │ │ │ │ │ │ ├── HttpOAuth2OpenAmAuthorizationMechanism.java │ │ │ │ │ │ │ ├── HttpOAuth2TokenIntrospectionAuthorizationMechanism.java │ │ │ │ │ │ │ ├── InternalProxyAuthzFilter.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ └── rest2ldap │ │ │ │ │ │ │ ├── AdminEndpoint.java │ │ │ │ │ │ │ ├── Rest2LdapEndpoint.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── AbstractRequestImpl.java │ │ │ │ │ │ ├── InternalClientConnection.java │ │ │ │ │ │ ├── InternalConnectionHandler.java │ │ │ │ │ │ ├── InternalSearchListener.java │ │ │ │ │ │ ├── InternalSearchOperation.java │ │ │ │ │ │ ├── Requests.java │ │ │ │ │ │ ├── SearchRequest.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── jmx │ │ │ │ │ │ ├── Credential.java │ │ │ │ │ │ ├── DirectoryRMIServerSocketFactory.java │ │ │ │ │ │ ├── JmxClientConnection.java │ │ │ │ │ │ ├── JmxConnectionHandler.java │ │ │ │ │ │ ├── OpendsJmxConnector.java │ │ │ │ │ │ ├── OpendsJmxPrincipal.java │ │ │ │ │ │ ├── OpendsRMIJRMPServerImpl.java │ │ │ │ │ │ ├── OpendsRmiServerSocketFactory.java │ │ │ │ │ │ ├── RmiAuthenticator.java │ │ │ │ │ │ ├── RmiConnector.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── ldap │ │ │ │ │ │ ├── ASN1ByteChannelReader.java │ │ │ │ │ │ ├── AbandonRequestProtocolOp.java │ │ │ │ │ │ ├── AddRequestProtocolOp.java │ │ │ │ │ │ ├── AddResponseProtocolOp.java │ │ │ │ │ │ ├── BindRequestProtocolOp.java │ │ │ │ │ │ ├── BindResponseProtocolOp.java │ │ │ │ │ │ ├── CompareRequestProtocolOp.java │ │ │ │ │ │ ├── CompareResponseProtocolOp.java │ │ │ │ │ │ ├── DeleteRequestProtocolOp.java │ │ │ │ │ │ ├── DeleteResponseProtocolOp.java │ │ │ │ │ │ ├── ExtendedRequestProtocolOp.java │ │ │ │ │ │ ├── ExtendedResponseProtocolOp.java │ │ │ │ │ │ ├── IntermediateResponseProtocolOp.java │ │ │ │ │ │ ├── LDAPAttribute.java │ │ │ │ │ │ ├── LDAPClientConnection.java │ │ │ │ │ │ ├── LDAPConnectionHandler.java │ │ │ │ │ │ ├── LDAPConstants.java │ │ │ │ │ │ ├── LDAPControl.java │ │ │ │ │ │ ├── LDAPFilter.java │ │ │ │ │ │ ├── LDAPMessage.java │ │ │ │ │ │ ├── LDAPModification.java │ │ │ │ │ │ ├── LDAPReader.java │ │ │ │ │ │ ├── LDAPRequestHandler.java │ │ │ │ │ │ ├── LDAPResultCode.java │ │ │ │ │ │ ├── LDAPStatistics.java │ │ │ │ │ │ ├── ModifyDNRequestProtocolOp.java │ │ │ │ │ │ ├── ModifyDNResponseProtocolOp.java │ │ │ │ │ │ ├── ModifyRequestProtocolOp.java │ │ │ │ │ │ ├── ModifyResponseProtocolOp.java │ │ │ │ │ │ ├── ProtocolOp.java │ │ │ │ │ │ ├── SearchRequestProtocolOp.java │ │ │ │ │ │ ├── SearchResultDoneProtocolOp.java │ │ │ │ │ │ ├── SearchResultEntryProtocolOp.java │ │ │ │ │ │ ├── SearchResultReferenceProtocolOp.java │ │ │ │ │ │ ├── UnbindRequestProtocolOp.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── replication │ │ │ │ │ ├── common │ │ │ │ │ │ ├── AssuredMode.java │ │ │ │ │ │ ├── CSN.java │ │ │ │ │ │ ├── CSNGenerator.java │ │ │ │ │ │ ├── DSInfo.java │ │ │ │ │ │ ├── MultiDomainServerState.java │ │ │ │ │ │ ├── RSInfo.java │ │ │ │ │ │ ├── ServerState.java │ │ │ │ │ │ ├── ServerStatus.java │ │ │ │ │ │ ├── StatusMachine.java │ │ │ │ │ │ ├── StatusMachineEvent.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── plugin │ │ │ │ │ │ ├── AttrHistorical.java │ │ │ │ │ │ ├── AttrHistoricalMultiple.java │ │ │ │ │ │ ├── AttrHistoricalSingle.java │ │ │ │ │ │ ├── AttrValueHistorical.java │ │ │ │ │ │ ├── EntryHistorical.java │ │ │ │ │ │ ├── ExternalChangelogDomain.java │ │ │ │ │ │ ├── FakeAddOperation.java │ │ │ │ │ │ ├── FakeDelOperation.java │ │ │ │ │ │ ├── FakeModdnOperation.java │ │ │ │ │ │ ├── FakeModifyOperation.java │ │ │ │ │ │ ├── FakeOperation.java │ │ │ │ │ │ ├── FractionalLDIFImportPlugin.java │ │ │ │ │ │ ├── GenerationIdChecksum.java │ │ │ │ │ │ ├── HistAttrModificationKey.java │ │ │ │ │ │ ├── HistoricalAttributeValue.java │ │ │ │ │ │ ├── HistoricalCsnOrderingMatchingRuleImpl.java │ │ │ │ │ │ ├── LDAPReplicationDomain.java │ │ │ │ │ │ ├── MultimasterReplication.java │ │ │ │ │ │ ├── PendingChange.java │ │ │ │ │ │ ├── PendingChanges.java │ │ │ │ │ │ ├── PersistentServerState.java │ │ │ │ │ │ ├── RemotePendingChanges.java │ │ │ │ │ │ ├── ReplLDIFOutputStream.java │ │ │ │ │ │ ├── ReplayThread.java │ │ │ │ │ │ ├── ReplicationRepairRequestControl.java │ │ │ │ │ │ ├── ReplicationServerListener.java │ │ │ │ │ │ ├── UpdateToReplay.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── protocol │ │ │ │ │ │ ├── AckMsg.java │ │ │ │ │ │ ├── AddContext.java │ │ │ │ │ │ ├── AddMsg.java │ │ │ │ │ │ ├── ByteArrayBuilder.java │ │ │ │ │ │ ├── ByteArrayScanner.java │ │ │ │ │ │ ├── ChangeStatusMsg.java │ │ │ │ │ │ ├── ChangeTimeHeartbeatMsg.java │ │ │ │ │ │ ├── DeleteContext.java │ │ │ │ │ │ ├── DeleteMsg.java │ │ │ │ │ │ ├── DoneMsg.java │ │ │ │ │ │ ├── EntryMsg.java │ │ │ │ │ │ ├── ErrorMsg.java │ │ │ │ │ │ ├── HeartbeatMsg.java │ │ │ │ │ │ ├── HeartbeatThread.java │ │ │ │ │ │ ├── InitializeRcvAckMsg.java │ │ │ │ │ │ ├── InitializeRequestMsg.java │ │ │ │ │ │ ├── InitializeTargetMsg.java │ │ │ │ │ │ ├── LDAPUpdateMsg.java │ │ │ │ │ │ ├── ModifyCommonMsg.java │ │ │ │ │ │ ├── ModifyContext.java │ │ │ │ │ │ ├── ModifyDNMsg.java │ │ │ │ │ │ ├── ModifyDnContext.java │ │ │ │ │ │ ├── ModifyMsg.java │ │ │ │ │ │ ├── MonitorMsg.java │ │ │ │ │ │ ├── MonitorRequestMsg.java │ │ │ │ │ │ ├── NotSupportedOldVersionPDUException.java │ │ │ │ │ │ ├── OperationContext.java │ │ │ │ │ │ ├── ProtocolVersion.java │ │ │ │ │ │ ├── ReplServerStartDSMsg.java │ │ │ │ │ │ ├── ReplServerStartMsg.java │ │ │ │ │ │ ├── ReplSessionSecurity.java │ │ │ │ │ │ ├── ReplicaOfflineMsg.java │ │ │ │ │ │ ├── ReplicationMsg.java │ │ │ │ │ │ ├── ResetGenerationIdMsg.java │ │ │ │ │ │ ├── RoutableMsg.java │ │ │ │ │ │ ├── ServerStartMsg.java │ │ │ │ │ │ ├── Session.java │ │ │ │ │ │ ├── StartMsg.java │ │ │ │ │ │ ├── StartSessionMsg.java │ │ │ │ │ │ ├── StopMsg.java │ │ │ │ │ │ ├── TopologyMsg.java │ │ │ │ │ │ ├── UpdateMsg.java │ │ │ │ │ │ ├── WindowMsg.java │ │ │ │ │ │ ├── WindowProbeMsg.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── server │ │ │ │ │ │ ├── ChangelogBaseDNVirtualAttributeProvider.java │ │ │ │ │ │ ├── ChangelogState.java │ │ │ │ │ │ ├── DataServerHandler.java │ │ │ │ │ │ ├── ExpectedAcksInfo.java │ │ │ │ │ │ ├── FirstChangeNumberVirtualAttributeProvider.java │ │ │ │ │ │ ├── LastChangeNumberVirtualAttributeProvider.java │ │ │ │ │ │ ├── LastCookieVirtualProvider.java │ │ │ │ │ │ ├── LightweightServerHandler.java │ │ │ │ │ │ ├── MessageHandler.java │ │ │ │ │ │ ├── MonitoringPublisher.java │ │ │ │ │ │ ├── MsgQueue.java │ │ │ │ │ │ ├── NotAssuredUpdateMsg.java │ │ │ │ │ │ ├── ReplicationDomainMonitor.java │ │ │ │ │ │ ├── ReplicationDomainMonitorData.java │ │ │ │ │ │ ├── ReplicationServer.java │ │ │ │ │ │ ├── ReplicationServerConnectThread.java │ │ │ │ │ │ ├── ReplicationServerDomain.java │ │ │ │ │ │ ├── ReplicationServerHandler.java │ │ │ │ │ │ ├── ReplicationServerListenThread.java │ │ │ │ │ │ ├── SafeDataExpectedAcksInfo.java │ │ │ │ │ │ ├── SafeReadExpectedAcksInfo.java │ │ │ │ │ │ ├── ServerHandler.java │ │ │ │ │ │ ├── ServerReader.java │ │ │ │ │ │ ├── ServerWriter.java │ │ │ │ │ │ ├── StatusAnalyzer.java │ │ │ │ │ │ ├── changelog │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── AbortedChangelogCursorException.java │ │ │ │ │ │ │ │ ├── ChangeNumberIndexDB.java │ │ │ │ │ │ │ │ ├── ChangeNumberIndexRecord.java │ │ │ │ │ │ │ │ ├── ChangelogDB.java │ │ │ │ │ │ │ │ ├── ChangelogException.java │ │ │ │ │ │ │ │ ├── ChangelogStateProvider.java │ │ │ │ │ │ │ │ ├── DBCursor.java │ │ │ │ │ │ │ │ ├── ReplicaId.java │ │ │ │ │ │ │ │ ├── ReplicationDomainDB.java │ │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ │ ├── BlockLogReader.java │ │ │ │ │ │ │ │ ├── BlockLogWriter.java │ │ │ │ │ │ │ │ ├── ChangeNumberIndexer.java │ │ │ │ │ │ │ │ ├── CompositeDBCursor.java │ │ │ │ │ │ │ │ ├── DecodingException.java │ │ │ │ │ │ │ │ ├── DomainDBCursor.java │ │ │ │ │ │ │ │ ├── ECLEnabledDomainPredicate.java │ │ │ │ │ │ │ │ ├── ECLMultiDomainDBCursor.java │ │ │ │ │ │ │ │ ├── FileChangeNumberIndexDB.java │ │ │ │ │ │ │ │ ├── FileChangeNumberIndexDBCursor.java │ │ │ │ │ │ │ │ ├── FileChangelogDB.java │ │ │ │ │ │ │ │ ├── FileReplicaDB.java │ │ │ │ │ │ │ │ ├── FileReplicaDBCursor.java │ │ │ │ │ │ │ │ ├── Log.java │ │ │ │ │ │ │ │ ├── LogFile.java │ │ │ │ │ │ │ │ ├── LogReaderPool.java │ │ │ │ │ │ │ │ ├── LogWriter.java │ │ │ │ │ │ │ │ ├── MultiDomainDBCursor.java │ │ │ │ │ │ │ │ ├── Record.java │ │ │ │ │ │ │ │ ├── RecordParser.java │ │ │ │ │ │ │ │ ├── ReplicaCursor.java │ │ │ │ │ │ │ │ ├── ReplicationEnvironment.java │ │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── service │ │ │ │ │ │ ├── CTHeartbeatPublisherThread.java │ │ │ │ │ │ ├── DSRSShutdownSync.java │ │ │ │ │ │ ├── HeartbeatMonitor.java │ │ │ │ │ │ ├── ReplInputStream.java │ │ │ │ │ │ ├── ReplOutputStream.java │ │ │ │ │ │ ├── ReplicationBroker.java │ │ │ │ │ │ ├── ReplicationDomain.java │ │ │ │ │ │ ├── ReplicationMonitor.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── schema │ │ │ │ │ ├── AbstractPasswordEqualityMatchingRuleImpl.java │ │ │ │ │ ├── AciSyntaxImpl.java │ │ │ │ │ ├── AuthPasswordEqualityMatchingRule.java │ │ │ │ │ ├── AuthPasswordSyntax.java │ │ │ │ │ ├── CoreSchemaProvider.java │ │ │ │ │ ├── GeneralizedTimeSyntax.java │ │ │ │ │ ├── JsonSchemaProvider.java │ │ │ │ │ ├── PrintableString.java │ │ │ │ │ ├── SchemaConstants.java │ │ │ │ │ ├── SchemaFilesWriter.java │ │ │ │ │ ├── SchemaHandler.java │ │ │ │ │ ├── SchemaProvider.java │ │ │ │ │ ├── SubtreeSpecificationSyntaxImpl.java │ │ │ │ │ ├── UserPasswordEqualityMatchingRule.java │ │ │ │ │ ├── UserPasswordSyntax.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── tasks │ │ │ │ │ ├── AddSchemaFileTask.java │ │ │ │ │ ├── BackupTask.java │ │ │ │ │ ├── DisconnectClientTask.java │ │ │ │ │ ├── EnterLockdownModeTask.java │ │ │ │ │ ├── ExportTask.java │ │ │ │ │ ├── ImportTask.java │ │ │ │ │ ├── InitializeTargetTask.java │ │ │ │ │ ├── InitializeTask.java │ │ │ │ │ ├── LeaveLockdownModeTask.java │ │ │ │ │ ├── PurgeConflictsHistoricalTask.java │ │ │ │ │ ├── RebuildTask.java │ │ │ │ │ ├── ResetChangeNumberTask.java │ │ │ │ │ ├── RestartTaskThread.java │ │ │ │ │ ├── RestoreTask.java │ │ │ │ │ ├── SetGenerationIdTask.java │ │ │ │ │ ├── ShutdownTask.java │ │ │ │ │ ├── ShutdownTaskThread.java │ │ │ │ │ ├── TaskUtils.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── tools │ │ │ │ │ ├── BackUpDB.java │ │ │ │ │ ├── BackendCreationHelper.java │ │ │ │ │ ├── BackendToolUtils.java │ │ │ │ │ ├── BackendTypeHelper.java │ │ │ │ │ ├── CheckJVMVersion.java │ │ │ │ │ ├── ConfigureDS.java │ │ │ │ │ ├── ConfigureWindowsService.java │ │ │ │ │ ├── CreateRCScript.java │ │ │ │ │ ├── EncodePassword.java │ │ │ │ │ ├── ExportLDIF.java │ │ │ │ │ ├── ImportLDIF.java │ │ │ │ │ ├── InstallDS.java │ │ │ │ │ ├── InstallDSArgumentParser.java │ │ │ │ │ ├── LDAPAuthenticationHandler.java │ │ │ │ │ ├── LDAPConnection.java │ │ │ │ │ ├── LDAPConnectionException.java │ │ │ │ │ ├── LDAPConnectionOptions.java │ │ │ │ │ ├── LDAPReader.java │ │ │ │ │ ├── LDAPWriter.java │ │ │ │ │ ├── ListBackends.java │ │ │ │ │ ├── ManageAccount.java │ │ │ │ │ ├── ManageTasks.java │ │ │ │ │ ├── PromptTrustManager.java │ │ │ │ │ ├── RebuildIndex.java │ │ │ │ │ ├── RestoreDB.java │ │ │ │ │ ├── SSLConnectionException.java │ │ │ │ │ ├── SSLConnectionFactory.java │ │ │ │ │ ├── StartWindowsService.java │ │ │ │ │ ├── StopDS.java │ │ │ │ │ ├── StopWindowsService.java │ │ │ │ │ ├── VerifyIndex.java │ │ │ │ │ ├── WaitForFileDelete.java │ │ │ │ │ ├── dsreplication │ │ │ │ │ │ ├── DisableReplicationUserData.java │ │ │ │ │ │ ├── EnableReplicationUserData.java │ │ │ │ │ │ ├── InitializeAllReplicationUserData.java │ │ │ │ │ │ ├── LocalPurgeHistorical.java │ │ │ │ │ │ ├── MonoServerReplicationUserData.java │ │ │ │ │ │ ├── PostExternalInitializationUserData.java │ │ │ │ │ │ ├── PreExternalInitializationUserData.java │ │ │ │ │ │ ├── PurgeHistoricalScheduleInformation.java │ │ │ │ │ │ ├── PurgeHistoricalUserData.java │ │ │ │ │ │ ├── ReplicationCliArgumentParser.java │ │ │ │ │ │ ├── ReplicationCliException.java │ │ │ │ │ │ ├── ReplicationCliMain.java │ │ │ │ │ │ ├── ReplicationCliReturnCode.java │ │ │ │ │ │ ├── ReplicationUserData.java │ │ │ │ │ │ ├── SourceDestinationServerUserData.java │ │ │ │ │ │ ├── StatusReplicationUserData.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── makeldif │ │ │ │ │ │ ├── AttributeValueTag.java │ │ │ │ │ │ ├── Branch.java │ │ │ │ │ │ ├── DNTag.java │ │ │ │ │ │ ├── DNTagUtils.java │ │ │ │ │ │ ├── EntryWriter.java │ │ │ │ │ │ ├── FileTag.java │ │ │ │ │ │ ├── FirstNameTag.java │ │ │ │ │ │ ├── GUIDTag.java │ │ │ │ │ │ ├── IfAbsentTag.java │ │ │ │ │ │ ├── IfPresentTag.java │ │ │ │ │ │ ├── LastNameTag.java │ │ │ │ │ │ ├── ListTag.java │ │ │ │ │ │ ├── MakeLDIFException.java │ │ │ │ │ │ ├── MakeLDIFInputStream.java │ │ │ │ │ │ ├── MakeLDIFInputStreamThread.java │ │ │ │ │ │ ├── ParentDNTag.java │ │ │ │ │ │ ├── PresenceTag.java │ │ │ │ │ │ ├── RDNTag.java │ │ │ │ │ │ ├── RandomTag.java │ │ │ │ │ │ ├── SequentialTag.java │ │ │ │ │ │ ├── StaticTextTag.java │ │ │ │ │ │ ├── Tag.java │ │ │ │ │ │ ├── TagResult.java │ │ │ │ │ │ ├── Template.java │ │ │ │ │ │ ├── TemplateEntry.java │ │ │ │ │ │ ├── TemplateFile.java │ │ │ │ │ │ ├── TemplateLine.java │ │ │ │ │ │ ├── TemplateValue.java │ │ │ │ │ │ ├── UnderscoreDNTag.java │ │ │ │ │ │ ├── UnderscoreParentDNTag.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── status │ │ │ │ │ │ ├── StatusCli.java │ │ │ │ │ │ ├── StatusCliArgumentParser.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── tasks │ │ │ │ │ │ ├── TaskClient.java │ │ │ │ │ │ ├── TaskClientException.java │ │ │ │ │ │ ├── TaskEntry.java │ │ │ │ │ │ ├── TaskScheduleInformation.java │ │ │ │ │ │ ├── TaskScheduleInteraction.java │ │ │ │ │ │ ├── TaskScheduleUserData.java │ │ │ │ │ │ ├── TaskTool.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── upgrade │ │ │ │ │ │ ├── AbstractUpgradeTask.java │ │ │ │ │ │ ├── FileManager.java │ │ │ │ │ │ ├── FormattedNotificationCallback.java │ │ │ │ │ │ ├── Installation.java │ │ │ │ │ │ ├── LicenseFile.java │ │ │ │ │ │ ├── ProgressNotificationCallback.java │ │ │ │ │ │ ├── Upgrade.java │ │ │ │ │ │ ├── UpgradeCli.java │ │ │ │ │ │ ├── UpgradeContext.java │ │ │ │ │ │ ├── UpgradeLog.java │ │ │ │ │ │ ├── UpgradeTask.java │ │ │ │ │ │ ├── UpgradeTasks.java │ │ │ │ │ │ ├── UpgradeUtils.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── types │ │ │ │ │ ├── AbstractAttribute.java │ │ │ │ │ ├── AbstractOperation.java │ │ │ │ │ ├── AcceptRejectWarn.java │ │ │ │ │ ├── AccountStatusNotification.java │ │ │ │ │ ├── AccountStatusNotificationProperty.java │ │ │ │ │ ├── AccountStatusNotificationType.java │ │ │ │ │ ├── AdditionalLogItem.java │ │ │ │ │ ├── Attribute.java │ │ │ │ │ ├── AttributeBuilder.java │ │ │ │ │ ├── AttributeParser.java │ │ │ │ │ ├── Attributes.java │ │ │ │ │ ├── AuthenticationInfo.java │ │ │ │ │ ├── AuthenticationType.java │ │ │ │ │ ├── BackupConfig.java │ │ │ │ │ ├── BackupDirectory.java │ │ │ │ │ ├── BackupInfo.java │ │ │ │ │ ├── CacheEntry.java │ │ │ │ │ ├── CancelRequest.java │ │ │ │ │ ├── CancelResult.java │ │ │ │ │ ├── CanceledOperationException.java │ │ │ │ │ ├── CollectiveVirtualAttribute.java │ │ │ │ │ ├── Control.java │ │ │ │ │ ├── CryptoManager.java │ │ │ │ │ ├── CryptoManagerException.java │ │ │ │ │ ├── DirectoryConfig.java │ │ │ │ │ ├── DirectoryEnvironmentConfig.java │ │ │ │ │ ├── DirectoryException.java │ │ │ │ │ ├── DisconnectReason.java │ │ │ │ │ ├── Entry.java │ │ │ │ │ ├── EntryEncodeConfig.java │ │ │ │ │ ├── ExistingFileBehavior.java │ │ │ │ │ ├── FilePermission.java │ │ │ │ │ ├── FilterType.java │ │ │ │ │ ├── HostPort.java │ │ │ │ │ ├── IdentifiedException.java │ │ │ │ │ ├── IndexType.java │ │ │ │ │ ├── InitializationException.java │ │ │ │ │ ├── IntermediateResponse.java │ │ │ │ │ ├── LDAPException.java │ │ │ │ │ ├── LDAPURL.java │ │ │ │ │ ├── LDIFExportConfig.java │ │ │ │ │ ├── LDIFImportConfig.java │ │ │ │ │ ├── LDIFImportResult.java │ │ │ │ │ ├── LockManager.java │ │ │ │ │ ├── MemberList.java │ │ │ │ │ ├── MembershipException.java │ │ │ │ │ ├── Modification.java │ │ │ │ │ ├── NamedCharacterSet.java │ │ │ │ │ ├── NullOutputStream.java │ │ │ │ │ ├── OpenDsException.java │ │ │ │ │ ├── Operation.java │ │ │ │ │ ├── OperationConfig.java │ │ │ │ │ ├── OperationType.java │ │ │ │ │ ├── Privilege.java │ │ │ │ │ ├── PublicAPI.java │ │ │ │ │ ├── RawAttribute.java │ │ │ │ │ ├── RawFilter.java │ │ │ │ │ ├── RawModification.java │ │ │ │ │ ├── RecordingInputStream.java │ │ │ │ │ ├── RecordingOutputStream.java │ │ │ │ │ ├── RestoreConfig.java │ │ │ │ │ ├── SSLClientAuthPolicy.java │ │ │ │ │ ├── SearchFilter.java │ │ │ │ │ ├── SearchResultEntry.java │ │ │ │ │ ├── SearchResultReference.java │ │ │ │ │ ├── StabilityLevel.java │ │ │ │ │ ├── SubEntry.java │ │ │ │ │ ├── SubtreeSpecification.java │ │ │ │ │ ├── SynchronizationProviderResult.java │ │ │ │ │ ├── VirtualAttribute.java │ │ │ │ │ ├── VirtualAttributeRule.java │ │ │ │ │ ├── WritabilityMode.java │ │ │ │ │ ├── operation │ │ │ │ │ │ ├── InProgressOperation.java │ │ │ │ │ │ ├── PluginOperation.java │ │ │ │ │ │ ├── PostOperationAbandonOperation.java │ │ │ │ │ │ ├── PostOperationAddOperation.java │ │ │ │ │ │ ├── PostOperationBindOperation.java │ │ │ │ │ │ ├── PostOperationCompareOperation.java │ │ │ │ │ │ ├── PostOperationDeleteOperation.java │ │ │ │ │ │ ├── PostOperationExtendedOperation.java │ │ │ │ │ │ ├── PostOperationModifyDNOperation.java │ │ │ │ │ │ ├── PostOperationModifyOperation.java │ │ │ │ │ │ ├── PostOperationOperation.java │ │ │ │ │ │ ├── PostOperationSearchOperation.java │ │ │ │ │ │ ├── PostOperationUnbindOperation.java │ │ │ │ │ │ ├── PostResponseAddOperation.java │ │ │ │ │ │ ├── PostResponseBindOperation.java │ │ │ │ │ │ ├── PostResponseCompareOperation.java │ │ │ │ │ │ ├── PostResponseDeleteOperation.java │ │ │ │ │ │ ├── PostResponseExtendedOperation.java │ │ │ │ │ │ ├── PostResponseModifyDNOperation.java │ │ │ │ │ │ ├── PostResponseModifyOperation.java │ │ │ │ │ │ ├── PostResponseOperation.java │ │ │ │ │ │ ├── PostResponseSearchOperation.java │ │ │ │ │ │ ├── PostSynchronizationAddOperation.java │ │ │ │ │ │ ├── PostSynchronizationDeleteOperation.java │ │ │ │ │ │ ├── PostSynchronizationModifyDNOperation.java │ │ │ │ │ │ ├── PostSynchronizationModifyOperation.java │ │ │ │ │ │ ├── PostSynchronizationOperation.java │ │ │ │ │ │ ├── PreOperationAddOperation.java │ │ │ │ │ │ ├── PreOperationBindOperation.java │ │ │ │ │ │ ├── PreOperationCompareOperation.java │ │ │ │ │ │ ├── PreOperationDeleteOperation.java │ │ │ │ │ │ ├── PreOperationExtendedOperation.java │ │ │ │ │ │ ├── PreOperationModifyDNOperation.java │ │ │ │ │ │ ├── PreOperationModifyOperation.java │ │ │ │ │ │ ├── PreOperationOperation.java │ │ │ │ │ │ ├── PreOperationSearchOperation.java │ │ │ │ │ │ ├── PreParseAbandonOperation.java │ │ │ │ │ │ ├── PreParseAddOperation.java │ │ │ │ │ │ ├── PreParseBindOperation.java │ │ │ │ │ │ ├── PreParseCompareOperation.java │ │ │ │ │ │ ├── PreParseDeleteOperation.java │ │ │ │ │ │ ├── PreParseExtendedOperation.java │ │ │ │ │ │ ├── PreParseModifyDNOperation.java │ │ │ │ │ │ ├── PreParseModifyOperation.java │ │ │ │ │ │ ├── PreParseOperation.java │ │ │ │ │ │ ├── PreParseSearchOperation.java │ │ │ │ │ │ ├── PreParseUnbindOperation.java │ │ │ │ │ │ ├── RollbackOperation.java │ │ │ │ │ │ ├── SearchEntrySearchOperation.java │ │ │ │ │ │ ├── SearchReferenceSearchOperation.java │ │ │ │ │ │ ├── SubordinateModifyDNOperation.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── util │ │ │ │ │ ├── AddChangeRecordEntry.java │ │ │ │ │ ├── BSDMD5Crypt.java │ │ │ │ │ ├── BackupManager.java │ │ │ │ │ ├── BuildVersion.java │ │ │ │ │ ├── CertificateManager.java │ │ │ │ │ ├── ChangeOperationType.java │ │ │ │ │ ├── ChangeRecordEntry.java │ │ │ │ │ ├── CollectionUtils.java │ │ │ │ │ ├── CronExecutorService.java │ │ │ │ │ ├── Crypt.java │ │ │ │ │ ├── DeleteChangeRecordEntry.java │ │ │ │ │ ├── EMailMessage.java │ │ │ │ │ ├── EmbeddedUtils.java │ │ │ │ │ ├── ExpirationCheckTrustManager.java │ │ │ │ │ ├── LDIFException.java │ │ │ │ │ ├── LDIFReader.java │ │ │ │ │ ├── LDIFWriter.java │ │ │ │ │ ├── LevenshteinDistance.java │ │ │ │ │ ├── ModifyChangeRecordEntry.java │ │ │ │ │ ├── ModifyDNChangeRecordEntry.java │ │ │ │ │ ├── MultiOutputStream.java │ │ │ │ │ ├── Platform.java │ │ │ │ │ ├── RuntimeInformation.java │ │ │ │ │ ├── SchemaUtils.java │ │ │ │ │ ├── SelectableCertificateKeyManager.java │ │ │ │ │ ├── ServerConstants.java │ │ │ │ │ ├── SetupUtils.java │ │ │ │ │ ├── StaticUtils.java │ │ │ │ │ ├── TimeThread.java │ │ │ │ │ ├── args │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── LDAPConnectionArgumentParser.java │ │ │ │ │ │ ├── LDAPConnectionConsoleInteraction.java │ │ │ │ │ │ ├── PointAdder.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ │ │ └── workflowelement │ │ │ │ │ └── localbackend │ │ │ │ │ ├── LocalBackendAddOperation.java │ │ │ │ │ ├── LocalBackendBindOperation.java │ │ │ │ │ ├── LocalBackendCompareOperation.java │ │ │ │ │ ├── LocalBackendDeleteOperation.java │ │ │ │ │ ├── LocalBackendModifyDNOperation.java │ │ │ │ │ ├── LocalBackendModifyOperation.java │ │ │ │ │ ├── LocalBackendSearchOperation.java │ │ │ │ │ ├── LocalBackendWorkflowElement.java │ │ │ │ │ └── package-info.java │ │ │ │ └── slf4j │ │ │ │ └── impl │ │ │ │ ├── StaticLoggerBinder.java │ │ │ │ ├── StaticMDCBinder.java │ │ │ │ ├── StaticMarkerBinder.java │ │ │ │ └── package-info.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── opendj.properties │ │ │ ├── product │ │ │ │ └── buildinfo │ │ │ └── services │ │ │ │ └── org.slf4j.spi.SLF4JServiceProvider │ │ │ ├── bootstrap │ │ │ ├── manifest-bootstrap │ │ │ └── manifest-bootstrap-client │ │ │ ├── java-stubs │ │ │ └── org │ │ │ │ └── opends │ │ │ │ └── server │ │ │ │ └── util │ │ │ │ └── DynamicConstants.java │ │ │ └── org │ │ │ ├── forgerock │ │ │ └── checkstyle │ │ │ │ ├── opends-checkstyle.xml │ │ │ │ └── unit-test-suppressions.xml │ │ │ └── opends │ │ │ └── server │ │ │ └── loggers │ │ │ └── audit-config.json │ ├── messages │ │ ├── org │ │ │ └── opends │ │ │ │ └── messages │ │ │ │ ├── access_control.properties │ │ │ │ ├── access_control_ca_ES.properties │ │ │ │ ├── access_control_de.properties │ │ │ │ ├── access_control_es.properties │ │ │ │ ├── access_control_fr.properties │ │ │ │ ├── access_control_ja.properties │ │ │ │ ├── access_control_ko.properties │ │ │ │ ├── access_control_pl.properties │ │ │ │ ├── access_control_zh_CN.properties │ │ │ │ ├── access_control_zh_TW.properties │ │ │ │ ├── admin.properties │ │ │ │ ├── admin_ca_ES.properties │ │ │ │ ├── admin_de.properties │ │ │ │ ├── admin_es.properties │ │ │ │ ├── admin_fr.properties │ │ │ │ ├── admin_ja.properties │ │ │ │ ├── admin_ko.properties │ │ │ │ ├── admin_pl.properties │ │ │ │ ├── admin_tool.properties │ │ │ │ ├── admin_tool_ca_ES.properties │ │ │ │ ├── admin_tool_de.properties │ │ │ │ ├── admin_tool_es.properties │ │ │ │ ├── admin_tool_fr.properties │ │ │ │ ├── admin_tool_ja.properties │ │ │ │ ├── admin_tool_ko.properties │ │ │ │ ├── admin_tool_pl.properties │ │ │ │ ├── admin_tool_zh_CN.properties │ │ │ │ ├── admin_tool_zh_TW.properties │ │ │ │ ├── admin_zh_CN.properties │ │ │ │ ├── admin_zh_TW.properties │ │ │ │ ├── backend.properties │ │ │ │ ├── backend_ca_ES.properties │ │ │ │ ├── backend_de.properties │ │ │ │ ├── backend_es.properties │ │ │ │ ├── backend_fr.properties │ │ │ │ ├── backend_ja.properties │ │ │ │ ├── backend_ko.properties │ │ │ │ ├── backend_pl.properties │ │ │ │ ├── backend_zh_CN.properties │ │ │ │ ├── backend_zh_TW.properties │ │ │ │ ├── config.properties │ │ │ │ ├── config_de.properties │ │ │ │ ├── config_es.properties │ │ │ │ ├── config_fr.properties │ │ │ │ ├── config_ja.properties │ │ │ │ ├── config_ko.properties │ │ │ │ ├── config_zh_CN.properties │ │ │ │ ├── config_zh_TW.properties │ │ │ │ ├── core.properties │ │ │ │ ├── core_ca_ES.properties │ │ │ │ ├── core_de.properties │ │ │ │ ├── core_es.properties │ │ │ │ ├── core_fr.properties │ │ │ │ ├── core_ja.properties │ │ │ │ ├── core_ko.properties │ │ │ │ ├── core_pl.properties │ │ │ │ ├── core_zh_CN.properties │ │ │ │ ├── core_zh_TW.properties │ │ │ │ ├── extension.properties │ │ │ │ ├── extension_ca_ES.properties │ │ │ │ ├── extension_de.properties │ │ │ │ ├── extension_es.properties │ │ │ │ ├── extension_fr.properties │ │ │ │ ├── extension_ja.properties │ │ │ │ ├── extension_ko.properties │ │ │ │ ├── extension_pl.properties │ │ │ │ ├── extension_zh_CN.properties │ │ │ │ ├── extension_zh_TW.properties │ │ │ │ ├── external.properties │ │ │ │ ├── logger.properties │ │ │ │ ├── logger_de.properties │ │ │ │ ├── logger_es.properties │ │ │ │ ├── logger_fr.properties │ │ │ │ ├── logger_ja.properties │ │ │ │ ├── logger_ko.properties │ │ │ │ ├── logger_zh_CN.properties │ │ │ │ ├── logger_zh_TW.properties │ │ │ │ ├── plugin.properties │ │ │ │ ├── plugin_de.properties │ │ │ │ ├── plugin_es.properties │ │ │ │ ├── plugin_fr.properties │ │ │ │ ├── plugin_ja.properties │ │ │ │ ├── plugin_ko.properties │ │ │ │ ├── plugin_pl.properties │ │ │ │ ├── plugin_zh_CN.properties │ │ │ │ ├── plugin_zh_TW.properties │ │ │ │ ├── protocol.properties │ │ │ │ ├── protocol_ca_ES.properties │ │ │ │ ├── protocol_de.properties │ │ │ │ ├── protocol_es.properties │ │ │ │ ├── protocol_fr.properties │ │ │ │ ├── protocol_ja.properties │ │ │ │ ├── protocol_ko.properties │ │ │ │ ├── protocol_pl.properties │ │ │ │ ├── protocol_zh_CN.properties │ │ │ │ ├── protocol_zh_TW.properties │ │ │ │ ├── quickSetup.properties │ │ │ │ ├── quickSetup_ca_ES.properties │ │ │ │ ├── quickSetup_de.properties │ │ │ │ ├── quickSetup_es.properties │ │ │ │ ├── quickSetup_fr.properties │ │ │ │ ├── quickSetup_ja.properties │ │ │ │ ├── quickSetup_ko.properties │ │ │ │ ├── quickSetup_pl.properties │ │ │ │ ├── quickSetup_zh_CN.properties │ │ │ │ ├── quickSetup_zh_TW.properties │ │ │ │ ├── replication.properties │ │ │ │ ├── replication_de.properties │ │ │ │ ├── replication_es.properties │ │ │ │ ├── replication_fr.properties │ │ │ │ ├── replication_ja.properties │ │ │ │ ├── replication_ko.properties │ │ │ │ ├── replication_zh_CN.properties │ │ │ │ ├── replication_zh_TW.properties │ │ │ │ ├── runtime.properties │ │ │ │ ├── runtime_ca_ES.properties │ │ │ │ ├── runtime_de.properties │ │ │ │ ├── runtime_es.properties │ │ │ │ ├── runtime_fr.properties │ │ │ │ ├── runtime_ja.properties │ │ │ │ ├── runtime_ko.properties │ │ │ │ ├── runtime_pl.properties │ │ │ │ ├── runtime_zh_CN.properties │ │ │ │ ├── runtime_zh_TW.properties │ │ │ │ ├── schema.properties │ │ │ │ ├── schema_de.properties │ │ │ │ ├── schema_es.properties │ │ │ │ ├── schema_fr.properties │ │ │ │ ├── schema_ja.properties │ │ │ │ ├── schema_ko.properties │ │ │ │ ├── schema_zh_CN.properties │ │ │ │ ├── schema_zh_TW.properties │ │ │ │ ├── task.properties │ │ │ │ ├── task_ca_ES.properties │ │ │ │ ├── task_de.properties │ │ │ │ ├── task_es.properties │ │ │ │ ├── task_fr.properties │ │ │ │ ├── task_ja.properties │ │ │ │ ├── task_ko.properties │ │ │ │ ├── task_pl.properties │ │ │ │ ├── task_zh_CN.properties │ │ │ │ ├── task_zh_TW.properties │ │ │ │ ├── tool.properties │ │ │ │ ├── tool_ca_ES.properties │ │ │ │ ├── tool_de.properties │ │ │ │ ├── tool_es.properties │ │ │ │ ├── tool_fr.properties │ │ │ │ ├── tool_ja.properties │ │ │ │ ├── tool_ko.properties │ │ │ │ ├── tool_pl.properties │ │ │ │ ├── tool_zh_CN.properties │ │ │ │ ├── tool_zh_TW.properties │ │ │ │ ├── utility.properties │ │ │ │ ├── utility_ca_ES.properties │ │ │ │ ├── utility_de.properties │ │ │ │ ├── utility_es.properties │ │ │ │ ├── utility_fr.properties │ │ │ │ ├── utility_ja.properties │ │ │ │ ├── utility_ko.properties │ │ │ │ ├── utility_pl.properties │ │ │ │ ├── utility_zh_CN.properties │ │ │ │ ├── utility_zh_TW.properties │ │ │ │ ├── version.properties │ │ │ │ ├── version_de.properties │ │ │ │ ├── version_es.properties │ │ │ │ ├── version_fr.properties │ │ │ │ ├── version_ja.properties │ │ │ │ ├── version_ko.properties │ │ │ │ ├── version_zh_CN.properties │ │ │ │ └── version_zh_TW.properties │ │ └── src │ │ │ └── org │ │ │ └── opends │ │ │ └── messages │ │ │ ├── Category.java │ │ │ ├── Severity.java │ │ │ └── package-info.java │ ├── site │ │ └── xdoc │ │ │ └── index.xml.vm │ ├── snmp │ │ ├── resource │ │ │ ├── config │ │ │ │ └── config.snmp.ldif │ │ │ ├── mib │ │ │ │ ├── SNMPV2-SMI.txt │ │ │ │ ├── mib_core.txt │ │ │ │ ├── rfc1213.txt │ │ │ │ ├── rfc2021.txt │ │ │ │ ├── rfc2605.txt │ │ │ │ └── rfc2788.txt │ │ │ └── security │ │ │ │ └── opendj-snmp.security │ │ └── src │ │ │ └── org │ │ │ └── opends │ │ │ └── server │ │ │ └── snmp │ │ │ ├── DIRECTORY_SERVER_MIBImpl.java │ │ │ ├── DsApplIfOpsEntryImpl.java │ │ │ ├── DsEntry.java │ │ │ ├── DsMIBImpl.java │ │ │ ├── DsTableEntryImpl.java │ │ │ ├── SNMPClassLoaderProvider.java │ │ │ ├── SNMPConnectionHandler.java │ │ │ ├── SNMPConnectionHandlerDefinitions.java │ │ │ ├── SNMPInetAddressAcl.java │ │ │ ├── SNMPMonitor.java │ │ │ ├── SNMPUserAcl.java │ │ │ └── package-info.java │ └── test │ │ ├── java │ │ └── org │ │ │ ├── forgerock │ │ │ ├── opendj │ │ │ │ ├── adapter │ │ │ │ │ └── server3x │ │ │ │ │ │ ├── AdaptersTestCase.java │ │ │ │ │ │ └── ConvertersTestCase.java │ │ │ │ └── rest2ldap │ │ │ │ │ └── AdminEndpointTestCase.java │ │ │ └── server │ │ │ │ └── embedded │ │ │ │ └── EmbeddedDirectoryServerTestCase.java │ │ │ ├── opends │ │ │ ├── quicksetup │ │ │ │ ├── ConfigurationTest.java │ │ │ │ ├── InstallationTest.java │ │ │ │ ├── QuickSetupTestCase.java │ │ │ │ ├── TestUtilities.java │ │ │ │ └── util │ │ │ │ │ ├── FileManagerTest.java │ │ │ │ │ ├── ServerControllerTest.java │ │ │ │ │ └── UtilsTest.java │ │ │ └── server │ │ │ │ ├── DirectoryServerTestCase.java │ │ │ │ ├── MemoryReductionTestCases.java │ │ │ │ ├── ServerContextBuilder.java │ │ │ │ ├── SuiteRunner.java │ │ │ │ ├── TestCaseUtils.java │ │ │ │ ├── TestListener.java │ │ │ │ ├── TestTextWriter.java │ │ │ │ ├── api │ │ │ │ ├── APITestCase.java │ │ │ │ ├── AlertHandlerTestCase.java │ │ │ │ ├── AuthenticationPolicyTestCase.java │ │ │ │ ├── DITCacheMapTestCase.java │ │ │ │ ├── MonitorDataTestCase.java │ │ │ │ ├── PasswordValidatorTestCase.java │ │ │ │ ├── TestTaskListener.java │ │ │ │ └── plugin │ │ │ │ │ ├── DirectoryServerPluginTestCase.java │ │ │ │ │ └── PluginAPITestCase.java │ │ │ │ ├── authorization │ │ │ │ └── dseecompat │ │ │ │ │ ├── AciBodyTest.java │ │ │ │ │ ├── AciTestCase.java │ │ │ │ │ ├── AciTests.java │ │ │ │ │ ├── AlternateRootDN.java │ │ │ │ │ ├── DNSTestCase.java │ │ │ │ │ ├── EnumRightTest.java │ │ │ │ │ ├── ExtOpTestCase.java │ │ │ │ │ ├── GetEffectiveRightsTestCase.java │ │ │ │ │ ├── IPTestCase.java │ │ │ │ │ ├── NestedGroupDNTestCase.java │ │ │ │ │ ├── ProxyBindTestCase.java │ │ │ │ │ ├── ProxyTestCase.java │ │ │ │ │ ├── ReferencesTestCase.java │ │ │ │ │ ├── SSFTestCase.java │ │ │ │ │ ├── TargAttrFiltersTestCase.java │ │ │ │ │ ├── TargetAttrTestCase.java │ │ │ │ │ ├── TargetControlTestCase.java │ │ │ │ │ └── TargetTestCase.java │ │ │ │ ├── backends │ │ │ │ ├── BackendTestCase.java │ │ │ │ ├── ChangelogBackendTestCase.java │ │ │ │ ├── GenericLocalBackendTestCase.java │ │ │ │ ├── LDIFBackendTestCase.java │ │ │ │ ├── SchemaBackendTestCase.java │ │ │ │ ├── SchemaTestMatchingRuleImpl.java │ │ │ │ ├── cassandra │ │ │ │ │ ├── EncryptedTestCase.java │ │ │ │ │ └── TestCase.java │ │ │ │ ├── jdbc │ │ │ │ │ ├── EncryptedTestCase.java │ │ │ │ │ ├── MsSqlTestCase.java │ │ │ │ │ ├── MySqlTestCase.java │ │ │ │ │ ├── OracleTestCase.java │ │ │ │ │ ├── PgSqlTestCase.java │ │ │ │ │ └── TestCase.java │ │ │ │ ├── jeb │ │ │ │ │ ├── EncryptedJETestCase.java │ │ │ │ │ ├── JETestCase.java │ │ │ │ │ └── JebTestCase.java │ │ │ │ ├── pdb │ │ │ │ │ ├── EncryptedPDBTestCase.java │ │ │ │ │ ├── PDBStorageTest.java │ │ │ │ │ └── PDBTestCase.java │ │ │ │ ├── pluggable │ │ │ │ │ ├── ClientConnectionStub.java │ │ │ │ │ ├── ControlsTestCase.java │ │ │ │ │ ├── DN2IDTest.java │ │ │ │ │ ├── DefaultIndexTest.java │ │ │ │ │ ├── EntryIDSetTest.java │ │ │ │ │ ├── ID2ChildrenCountTest.java │ │ │ │ │ ├── OnDiskMergeImporterTest.java │ │ │ │ │ ├── PluggableBackendImplTestCase.java │ │ │ │ │ ├── StateTest.java │ │ │ │ │ ├── TestDnKeyFormat.java │ │ │ │ │ └── Utils.java │ │ │ │ └── task │ │ │ │ │ └── TaskBackendTestCase.java │ │ │ │ ├── config │ │ │ │ ├── ExpressionTest.java │ │ │ │ └── FunctionsTest.java │ │ │ │ ├── controls │ │ │ │ ├── ControlsTestCase.java │ │ │ │ ├── ExternalChangelogControlTest.java │ │ │ │ ├── MatchedValuesControlTest.java │ │ │ │ ├── PasswordControlTest.java │ │ │ │ ├── PasswordPolicyControlTestCase.java │ │ │ │ ├── PersistentSearchControlTest.java │ │ │ │ ├── ProxiedAuthV1ControlTestCase.java │ │ │ │ ├── ProxiedAuthV2ControlTestCase.java │ │ │ │ ├── ServerSideSortControlTestCase.java │ │ │ │ └── VLVControlTestCase.java │ │ │ │ ├── core │ │ │ │ ├── AbandonOperationTestCase.java │ │ │ │ ├── AddOperationTestCase.java │ │ │ │ ├── BackendConfigManagerTestCase.java │ │ │ │ ├── BindOperationTestCase.java │ │ │ │ ├── BoundedWorkQueueStrategyTest.java │ │ │ │ ├── CompareOperationTestCase.java │ │ │ │ ├── CoreTestCase.java │ │ │ │ ├── DeleteOperationTestCase.java │ │ │ │ ├── GroupManagerTestCase.java │ │ │ │ ├── IdleTimeLimitTestCase.java │ │ │ │ ├── ModifyOperationTestCase.java │ │ │ │ ├── OperationTestCase.java │ │ │ │ ├── PasswordPolicyTestCase.java │ │ │ │ ├── PluginConfigManagerTestCase.java │ │ │ │ ├── RejectUnauthReqTests.java │ │ │ │ ├── SchemaHandlerTestCase.java │ │ │ │ ├── SearchOperationTestCase.java │ │ │ │ ├── SubentryManagerTestCase.java │ │ │ │ ├── SubentryPasswordPolicyTestCase.java │ │ │ │ ├── SubtreeSpecificationTestCase.java │ │ │ │ ├── TestChangeNotificationListener.java │ │ │ │ ├── TestModifyDNOperation.java │ │ │ │ └── UnbindOperationTestCase.java │ │ │ │ ├── crypto │ │ │ │ ├── CryptoManagerTestCase.java │ │ │ │ ├── CryptoTestCase.java │ │ │ │ └── GetSymmetricKeyExtendedOperationTestCase.java │ │ │ │ ├── extensions │ │ │ │ ├── AESPasswordStorageSchemeTestCase.java │ │ │ │ ├── AnonymousSASLMechanismHandlerTestCase.java │ │ │ │ ├── AttributeValuePasswordValidatorTestCase.java │ │ │ │ ├── BCryptTest.java │ │ │ │ ├── Base64PasswordStorageSchemeTestCase.java │ │ │ │ ├── BcryptPasswordStorageSchemeTestCase.java │ │ │ │ ├── BlindTrustManagerProviderTestCase.java │ │ │ │ ├── BlowfishPasswordStorageSchemeTestCase.java │ │ │ │ ├── CRAMMD5SASLMechanismHandlerTestCase.java │ │ │ │ ├── CancelExtendedOperationTestCase.java │ │ │ │ ├── CertificateValidationPolicyTestCase.java │ │ │ │ ├── CharacterSetPasswordValidatorTestCase.java │ │ │ │ ├── ClearPasswordStorageSchemeTestCase.java │ │ │ │ ├── CommonEntryCache.java │ │ │ │ ├── CompactDnTestCase.java │ │ │ │ ├── CryptPasswordStorageSchemeTestCase.java │ │ │ │ ├── DefaultEntryCacheTestCase.java │ │ │ │ ├── DictionaryPasswordValidatorTestCase.java │ │ │ │ ├── DigestMD5SASLMechanismHandlerTestCase.java │ │ │ │ ├── DummyAlertHandler.java │ │ │ │ ├── EntityTagVirtualAttributeProviderTestCase.java │ │ │ │ ├── EntryDNVirtualAttributeProviderTestCase.java │ │ │ │ ├── EntryUUIDVirtualAttributeProviderTestCase.java │ │ │ │ ├── ErrorLogAccountStatusNotificationHandlerTestCase.java │ │ │ │ ├── ExactMatchIdentityMapperTestCase.java │ │ │ │ ├── ExtensionTestUtils.java │ │ │ │ ├── ExtensionsTestCase.java │ │ │ │ ├── ExternalSASLMechanismHandlerTestCase.java │ │ │ │ ├── FIFOEntryCacheTestCase.java │ │ │ │ ├── FileBasedKeyManagerProviderTestCase.java │ │ │ │ ├── FileBasedTrustManagerProviderTestCase.java │ │ │ │ ├── FingerprintCertificateMapperTestCase.java │ │ │ │ ├── GoverningStructureRuleVirtualAttributeProviderTestCase.java │ │ │ │ ├── HasSubordinatesVirtualAttributeProviderTestCase.java │ │ │ │ ├── InitializationUtils.java │ │ │ │ ├── IsMemberOfVirtualAttributeProviderTestCase.java │ │ │ │ ├── Issue387TestCase.java │ │ │ │ ├── Issue425TestCase.java │ │ │ │ ├── JMXAlertHandlerTestCase.java │ │ │ │ ├── LDAPPassThroughAuthenticationPolicyTestCase.java │ │ │ │ ├── LengthBasedPasswordValidatorTestCase.java │ │ │ │ ├── MD5PasswordStorageSchemeTestCase.java │ │ │ │ ├── NullKeyManagerProviderTestCase.java │ │ │ │ ├── NumSubordinatesVirtualAttributeProviderTestCase.java │ │ │ │ ├── PBKDF2HmacSHA256PasswordStorageSchemeTestCase.java │ │ │ │ ├── PBKDF2HmacSHA512PasswordStorageSchemeTestCase.java │ │ │ │ ├── PBKDF2PasswordStorageSchemeTestCase.java │ │ │ │ ├── PKCS5S2PasswordStorageSchemeTestCase.java │ │ │ │ ├── PasswordExpirationTimeVirtualAttributeProviderTestCase.java │ │ │ │ ├── PasswordModifyExtendedOperationTestCase.java │ │ │ │ ├── PasswordStorageSchemeTestCase.java │ │ │ │ ├── PlainSASLMechanismHandlerTestCase.java │ │ │ │ ├── RC4PasswordStorageSchemeTestCase.java │ │ │ │ ├── RandomPasswordGeneratorTestCase.java │ │ │ │ ├── RegularExpressionIdentityMapperTestCase.java │ │ │ │ ├── RepeatedCharactersPasswordValidatorTestCase.java │ │ │ │ ├── SASLOverTLSTestCase.java │ │ │ │ ├── SHA1PasswordStorageSchemeTestCase.java │ │ │ │ ├── SaltedMD5PasswordStorageSchemeTestCase.java │ │ │ │ ├── SaltedSHA1PasswordStorageSchemeTestCase.java │ │ │ │ ├── SaltedSHA256PasswordStorageSchemeTestCase.java │ │ │ │ ├── SaltedSHA384PasswordStorageSchemeTestCase.java │ │ │ │ ├── SaltedSHA512PasswordStorageSchemeTestCase.java │ │ │ │ ├── SimilarityBasedPasswordValidatorTestCase.java │ │ │ │ ├── SoftReferenceEntryCacheTestCase.java │ │ │ │ ├── StartTLSExtendedOperationTestCase.java │ │ │ │ ├── StructuralObjectClassVirtualAttributeProviderTestCase.java │ │ │ │ ├── SubjectAttributeToUserAttributeCertificateMapperTestCase.java │ │ │ │ ├── SubjectDNToUserAttributeCertificateMapperTestCase.java │ │ │ │ ├── SubschemaSubentryVirtualAttributeProviderTestCase.java │ │ │ │ ├── TLSByteChannelTestCase.java │ │ │ │ ├── TestAccountStatusNotificationHandler.java │ │ │ │ ├── TestAlertGenerator.java │ │ │ │ ├── TestPasswordValidator.java │ │ │ │ ├── TraditionalWorkQueueTestCase.java │ │ │ │ ├── TripleDESPasswordStorageSchemeTestCase.java │ │ │ │ ├── UniqueCharactersPasswordValidatorTestCase.java │ │ │ │ ├── UserDefinedVirtualAttributeProviderTestCase.java │ │ │ │ ├── VirtualStaticGroupTestCase.java │ │ │ │ └── WhoAmIExtendedOperationTestCase.java │ │ │ │ ├── loggers │ │ │ │ ├── AbstractTextAccessLogPublisherTest.java │ │ │ │ ├── LoggingCategoryNamesTest.java │ │ │ │ └── TraceSettingsTest.java │ │ │ │ ├── monitors │ │ │ │ ├── GenericMonitorTestCase.java │ │ │ │ ├── InternalSearchMonitorTestCase.java │ │ │ │ ├── LocalBackendMonitorTestCase.java │ │ │ │ ├── MonitorTestCase.java │ │ │ │ ├── StackTraceMonitorTestCase.java │ │ │ │ ├── SystemInfoMonitorTestCase.java │ │ │ │ ├── TestMonitorProvider.java │ │ │ │ ├── TraditionalWorkQueueMonitorTestCase.java │ │ │ │ └── VersionMonitorTestCase.java │ │ │ │ ├── plugins │ │ │ │ ├── AttributeCleanupPluginTestCase.java │ │ │ │ ├── DelayPreOpPlugin.java │ │ │ │ ├── DisconnectClientPlugin.java │ │ │ │ ├── EntryUUIDPluginTestCase.java │ │ │ │ ├── InvocationCounterPlugin.java │ │ │ │ ├── LDAPADListPluginTestCase.java │ │ │ │ ├── LastModPluginTestCase.java │ │ │ │ ├── NullPlugin.java │ │ │ │ ├── PasswordPolicyImportPluginTestCase.java │ │ │ │ ├── PluginTestCase.java │ │ │ │ ├── ReferentialIntegrityPluginTestCase.java │ │ │ │ ├── SambaPasswordPluginTestCase.java │ │ │ │ ├── SevenBitCleanPluginTestCase.java │ │ │ │ ├── ShortCircuitPlugin.java │ │ │ │ ├── UniqueAttributePluginTestCase.java │ │ │ │ └── UpdatePreOpPlugin.java │ │ │ │ ├── protocols │ │ │ │ ├── LDIFConnectionHandlerTestCase.java │ │ │ │ ├── asn1 │ │ │ │ │ └── GSERParserTestCase.java │ │ │ │ ├── internal │ │ │ │ │ ├── InternalClientConnectionTestCase.java │ │ │ │ │ ├── InternalConnectionHandlerTestCase.java │ │ │ │ │ ├── InternalSearchOperationTestCase.java │ │ │ │ │ ├── InternalTestCase.java │ │ │ │ │ └── TestInternalSearchListener.java │ │ │ │ ├── jmx │ │ │ │ │ ├── JmxConnectTest.java │ │ │ │ │ ├── JmxPrivilegeTestCase.java │ │ │ │ │ ├── JmxTestCase.java │ │ │ │ │ └── PostConnectedDisconnectTest.java │ │ │ │ └── ldap │ │ │ │ │ ├── ASN1ByteChannelReaderTestCase.java │ │ │ │ │ ├── ASN1ReaderTestCase.java │ │ │ │ │ ├── LDAPBinaryOptionTestCase.java │ │ │ │ │ ├── LDAPv2TestCase.java │ │ │ │ │ ├── LdapTestCase.java │ │ │ │ │ ├── TestAbandonRequestProtocolOp.java │ │ │ │ │ ├── TestAddRequestProtocolOp.java │ │ │ │ │ ├── TestAddResponseProtocolOp.java │ │ │ │ │ ├── TestBindRequestProtocolOp.java │ │ │ │ │ ├── TestBindResponseProtocolOp.java │ │ │ │ │ ├── TestCompareRequestProtocolOp.java │ │ │ │ │ ├── TestCompareResponseProtocolOp.java │ │ │ │ │ ├── TestDeleteRequestProtocolOp.java │ │ │ │ │ ├── TestDeleteResponseProtocolOp.java │ │ │ │ │ ├── TestLDAPConnectionHandler.java │ │ │ │ │ ├── TestLDAPException.java │ │ │ │ │ ├── TestLDAPFilter.java │ │ │ │ │ ├── TestModifyDNRequestProtocolOp.java │ │ │ │ │ ├── TestModifyDNResponseProtocolOp.java │ │ │ │ │ ├── TestModifyRequestProtocolOp.java │ │ │ │ │ ├── TestModifyResponseProtocolOp.java │ │ │ │ │ ├── TestSearchProtocolOp.java │ │ │ │ │ ├── TestSearchResultEntryProtocolOp.java │ │ │ │ │ └── TestUnbindRequestProtocolOp.java │ │ │ │ ├── replication │ │ │ │ ├── ChangeNumberControlPluginTestCase.java │ │ │ │ ├── DependencyTest.java │ │ │ │ ├── GenerationIdTest.java │ │ │ │ ├── InitOnLineTest.java │ │ │ │ ├── ProtocolWindowTest.java │ │ │ │ ├── ReSyncTest.java │ │ │ │ ├── ReplicationTestCase.java │ │ │ │ ├── SchemaReplicationTest.java │ │ │ │ ├── StressTest.java │ │ │ │ ├── UpdateOperationTest.java │ │ │ │ ├── common │ │ │ │ │ ├── CSNGeneratorTest.java │ │ │ │ │ ├── CSNTest.java │ │ │ │ │ ├── MultiDomainServerStateTest.java │ │ │ │ │ └── ServerStateTest.java │ │ │ │ ├── plugin │ │ │ │ │ ├── AssuredReplicationPluginTest.java │ │ │ │ │ ├── AttrHistoricalMultipleTest.java │ │ │ │ │ ├── AttrHistoricalSingleTest.java │ │ │ │ │ ├── AttrValueHistoricalTest.java │ │ │ │ │ ├── DomainFakeCfg.java │ │ │ │ │ ├── DummyReplicationDomain.java │ │ │ │ │ ├── ExternalChangelogDomainFakeCfg.java │ │ │ │ │ ├── FractionalReplicationTest.java │ │ │ │ │ ├── GenerationIdChecksumTest.java │ │ │ │ │ ├── GroupIdHandshakeTest.java │ │ │ │ │ ├── HistoricalAttributeValueTestCase.java │ │ │ │ │ ├── HistoricalCsnOrderingTest.java │ │ │ │ │ ├── HistoricalTest.java │ │ │ │ │ ├── IsolationTest.java │ │ │ │ │ ├── ModifyConflictTest.java │ │ │ │ │ ├── ModifyReplaySingleValuedAttributeTest.java │ │ │ │ │ ├── NamingConflictTest.java │ │ │ │ │ ├── PersistentServerStateTest.java │ │ │ │ │ ├── ReplicationRepairControlTest.java │ │ │ │ │ ├── ReplicationServerFailoverTest.java │ │ │ │ │ ├── ReplicationServerLoadBalancingTest.java │ │ │ │ │ ├── StateMachineTest.java │ │ │ │ │ ├── TestSynchronousReplayQueue.java │ │ │ │ │ └── TopologyViewTest.java │ │ │ │ ├── protocol │ │ │ │ │ ├── ByteArrayTest.java │ │ │ │ │ ├── ModifyDNMsgTest.java │ │ │ │ │ ├── ProtocolCompatibilityTest.java │ │ │ │ │ └── SynchronizationMsgTest.java │ │ │ │ ├── server │ │ │ │ │ ├── AssuredReplicationServerTest.java │ │ │ │ │ ├── MonitorTest.java │ │ │ │ │ ├── ReplServerFakeConfiguration.java │ │ │ │ │ ├── ReplicationServerDynamicConfTest.java │ │ │ │ │ ├── ReplicationServerTest.java │ │ │ │ │ └── changelog │ │ │ │ │ │ └── file │ │ │ │ │ │ ├── BlockLogReaderWriterTest.java │ │ │ │ │ │ ├── ChangeNumberIndexerTest.java │ │ │ │ │ │ ├── CompositeDBCursorTest.java │ │ │ │ │ │ ├── ECLMultiDomainDBCursorTest.java │ │ │ │ │ │ ├── FakeUpdateMsg.java │ │ │ │ │ │ ├── FileChangeNumberIndexDBTest.java │ │ │ │ │ │ ├── FileReplicaDBTest.java │ │ │ │ │ │ ├── LogFileTest.java │ │ │ │ │ │ ├── LogTest.java │ │ │ │ │ │ ├── ReplicaCursorTest.java │ │ │ │ │ │ ├── ReplicationEnvironmentTest.java │ │ │ │ │ │ └── SequentialDBCursor.java │ │ │ │ └── service │ │ │ │ │ ├── ComputeBestServerTest.java │ │ │ │ │ ├── FakeReplicationDomain.java │ │ │ │ │ ├── FakeStressReplicationDomain.java │ │ │ │ │ ├── ReplicationBrokerTest.java │ │ │ │ │ └── ReplicationDomainTest.java │ │ │ │ ├── schema │ │ │ │ ├── AuthPasswordSyntaxTest.java │ │ │ │ ├── CollationMatchingRuleTest.java │ │ │ │ ├── CoreSchemaProviderTestCase.java │ │ │ │ ├── EqualityMatchingRuleTest.java │ │ │ │ ├── FakeByteStringIndex.java │ │ │ │ ├── FakeEntryIndex.java │ │ │ │ ├── FakeIndexQueryFactory.java │ │ │ │ ├── GeneralizedTimeSyntaxTest.java │ │ │ │ ├── GenericSchemaTestCase.java │ │ │ │ ├── SchemaTestCase.java │ │ │ │ ├── StringPrepProfileTestCase.java │ │ │ │ ├── TimeBasedMatchingRuleTest.java │ │ │ │ └── UserPasswordEqualityMatchingRuleTest.java │ │ │ │ ├── snmp │ │ │ │ ├── SNMPConnectionManager.java │ │ │ │ ├── SNMPSyncManagerV2AccessTest.java │ │ │ │ └── SNMPTrapManagerTest.java │ │ │ │ ├── tasks │ │ │ │ ├── AddSchemaFileTaskTestCase.java │ │ │ │ ├── AllowedTaskTestCase.java │ │ │ │ ├── DisconnectClientTaskTestCase.java │ │ │ │ ├── DummyTask.java │ │ │ │ ├── LdifFileWriter.java │ │ │ │ ├── LockdownModeTaskTestCase.java │ │ │ │ ├── TasksTestCase.java │ │ │ │ ├── TestBackupAndRestore.java │ │ │ │ ├── TestImportAndExport.java │ │ │ │ └── TestRebuildTask.java │ │ │ │ ├── tools │ │ │ │ ├── ArgumentParserToolsTestCase.java │ │ │ │ ├── BackendTypeHelperTestCase.java │ │ │ │ ├── EncodePasswordTestCase.java │ │ │ │ ├── ImportLDIFTestCase.java │ │ │ │ ├── LDAPAuthenticationHandlerTestCase.java │ │ │ │ ├── ListBackendsTestCase.java │ │ │ │ ├── ManageAccountTestCase.java │ │ │ │ ├── RebuildIndexTestCase.java │ │ │ │ ├── RemoteConnection.java │ │ │ │ ├── ToolsTestCase.java │ │ │ │ ├── UpgradeTestCase.java │ │ │ │ ├── VerifyIndexTestCase.java │ │ │ │ ├── dsconfig │ │ │ │ │ ├── DsconfigLdapConnectionTestCase.java │ │ │ │ │ └── DsconfigOptionsTestCase.java │ │ │ │ └── makeldif │ │ │ │ │ └── MakeLDIFTestCase.java │ │ │ │ ├── types │ │ │ │ ├── AdditionalLogItemTest.java │ │ │ │ ├── AttributeBuilderTest.java │ │ │ │ ├── AttributesTest.java │ │ │ │ ├── DirectoryExceptionTestCase.java │ │ │ │ ├── EntrySchemaCheckingTestCase.java │ │ │ │ ├── HostPortTest.java │ │ │ │ ├── InitializationExceptionTestCase.java │ │ │ │ ├── LDAPURLTest.java │ │ │ │ ├── LDAPURLTestCase.java │ │ │ │ ├── LockManagerTest.java │ │ │ │ ├── PrivilegeTestCase.java │ │ │ │ ├── SearchFilterTests.java │ │ │ │ ├── TestDN.java │ │ │ │ ├── TestEntry.java │ │ │ │ ├── TestSubtreeSpecification.java │ │ │ │ ├── TypesTestCase.java │ │ │ │ ├── VirtualAttributeRuleTestCase.java │ │ │ │ └── VirtualAttributeTestCase.java │ │ │ │ ├── util │ │ │ │ ├── Args.java │ │ │ │ ├── BackupManagerTestCase.java │ │ │ │ ├── CertificateManagerTestCase.java │ │ │ │ ├── CronExecutorServiceTest.java │ │ │ │ ├── LevenshteinDistanceTestCase.java │ │ │ │ ├── PackageInfoTestCase.java │ │ │ │ ├── TestAddChangeRecordEntry.java │ │ │ │ ├── TestChangeRecordEntry.java │ │ │ │ ├── TestCrypt.java │ │ │ │ ├── TestDeleteChangeRecordEntry.java │ │ │ │ ├── TestLDIFReader.java │ │ │ │ ├── TestLDIFWriter.java │ │ │ │ ├── TestModifyChangeRecordEntry.java │ │ │ │ ├── TestModifyDNChangeRecordEntry.java │ │ │ │ ├── TestStaticUtils.java │ │ │ │ ├── TestTimer.java │ │ │ │ └── UtilTestCase.java │ │ │ │ └── workflowelement │ │ │ │ └── localbackend │ │ │ │ └── LocalBackendWorkflowElementTest.java │ │ │ └── openidentityplatform │ │ │ └── opendj │ │ │ ├── AliasTestCase.java │ │ │ ├── Issue84TestSuite.java │ │ │ ├── OverlappingBackendTestSuite.java │ │ │ ├── RelaxRulesTestCase.java │ │ │ └── Rfc5808TestCase.java │ │ └── resources │ │ └── issue496.ldif └── tests │ ├── default.installer.properties │ ├── installer.xml │ └── unit-tests-testng │ └── resource │ ├── client-cert.p12 │ ├── client-emailAddress.keystore │ ├── client.keystore │ ├── client.truststore │ ├── config-changes.ldif │ ├── configForTests │ └── config-small.ldif │ ├── el-config.properties │ ├── el-password.pin │ ├── password-with-all-crypt-salts.txt │ ├── server-cert.p12 │ ├── server.keystore │ ├── server.truststore │ └── test-import-file.ldif ├── opendj-server-msad-plugin ├── README.msad.plugin ├── pom.xml └── src │ └── main │ ├── assembly │ ├── config │ │ ├── msad-plugin.ldif │ │ └── schema │ │ │ └── 99-msad-plugin.ldif │ └── descriptor.xml │ └── java │ └── opendj │ ├── MsadPlugin.java │ ├── MsadPluginConfiguration.xml │ ├── Package.xml │ └── package-info.java ├── opendj-server ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── forgerock │ │ │ └── opendj │ │ │ └── server │ │ │ └── core │ │ │ ├── AbstractDataProvider.java │ │ │ ├── ArchivableDataProvider.java │ │ │ ├── Attachment.java │ │ │ ├── AttachmentHolder.java │ │ │ ├── BackupConfig.java │ │ │ ├── BindRequestContext.java │ │ │ ├── DataProvider.java │ │ │ ├── DataProviderCfg.java │ │ │ ├── DataProviderConnection.java │ │ │ ├── DataProviderEvent.java │ │ │ ├── DataProviderEventListener.java │ │ │ ├── DataProviderFactory.java │ │ │ ├── DataProviderID.java │ │ │ ├── DataProviderStatus.java │ │ │ ├── ExportableDataProvider.java │ │ │ ├── ImportableDataProvider.java │ │ │ ├── Operation.java │ │ │ ├── Privilege.java │ │ │ ├── ProductInformation.java │ │ │ ├── RestoreConfig.java │ │ │ └── package-info.java │ └── resources │ │ └── META-INF │ │ └── product │ │ └── opendj.properties │ ├── site │ └── xdoc │ │ └── index.xml.vm │ └── test │ └── java │ └── org │ └── forgerock │ └── opendj │ └── server │ └── core │ └── ProductInformationTest.java └── pom.xml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/SECURITY.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/logo.png -------------------------------------------------------------------------------- /opendj-cli/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/pom.xml -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/Argument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/Argument.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentConstants.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentException.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentGroup.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentParser.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/BooleanArgument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/BooleanArgument.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/CliConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/CliConstants.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/ClientException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/ClientException.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/CommandBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/CommandBuilder.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/CommonArguments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/CommonArguments.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/FileBasedArgument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/FileBasedArgument.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/HelpCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/HelpCallback.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/IntegerArgument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/IntegerArgument.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/Menu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/Menu.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/MenuBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/MenuBuilder.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/MenuCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/MenuCallback.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/MenuResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/MenuResult.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/ReturnCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/ReturnCode.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/StringArgument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/StringArgument.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/SubCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/SubCommand.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/TableBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/TableBuilder.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/TablePrinter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/TablePrinter.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/TableSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/TableSerializer.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/TextTablePrinter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/TextTablePrinter.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/Utils.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/VersionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/VersionHandler.java -------------------------------------------------------------------------------- /opendj-cli/src/main/java/com/forgerock/opendj/cli/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/java/com/forgerock/opendj/cli/package-info.java -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli.properties -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli_de.properties -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli_es.properties -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli_fr.properties -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli_ja.properties -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli_ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli_ko.properties -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli_pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli_pl.properties -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/templates/dscfgAppendProps.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/templates/dscfgAppendProps.ftl -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/templates/dscfgListItem.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/templates/dscfgListItem.ftl -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/templates/dscfgListSubtypes.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/templates/dscfgListSubtypes.ftl -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/templates/dscfgReference.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/templates/dscfgReference.ftl -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/templates/dscfgSubcommand.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/templates/dscfgSubcommand.ftl -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/templates/dscfgVarListEntry.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/templates/dscfgVarListEntry.ftl -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/templates/dscfgVariableList.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/templates/dscfgVariableList.ftl -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/templates/optionsRefSect1.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/templates/optionsRefSect1.ftl -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/templates/refEntry.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/templates/refEntry.ftl -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/templates/refSect1.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/templates/refSect1.ftl -------------------------------------------------------------------------------- /opendj-cli/src/main/resources/templates/refSect2.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/main/resources/templates/refSect2.ftl -------------------------------------------------------------------------------- /opendj-cli/src/test/java/com/forgerock/opendj/cli/CliTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/test/java/com/forgerock/opendj/cli/CliTestCase.java -------------------------------------------------------------------------------- /opendj-cli/src/test/java/com/forgerock/opendj/cli/UtilsTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-cli/src/test/java/com/forgerock/opendj/cli/UtilsTestCase.java -------------------------------------------------------------------------------- /opendj-config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-config/pom.xml -------------------------------------------------------------------------------- /opendj-config/src/main/java/org/forgerock/opendj/config/Constraint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-config/src/main/java/org/forgerock/opendj/config/Constraint.java -------------------------------------------------------------------------------- /opendj-config/src/main/java/org/forgerock/opendj/config/LDAPProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-config/src/main/java/org/forgerock/opendj/config/LDAPProfile.java -------------------------------------------------------------------------------- /opendj-config/src/main/java/org/forgerock/opendj/config/Reference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-config/src/main/java/org/forgerock/opendj/config/Reference.java -------------------------------------------------------------------------------- /opendj-config/src/main/java/org/forgerock/opendj/config/SizeUnit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-config/src/main/java/org/forgerock/opendj/config/SizeUnit.java -------------------------------------------------------------------------------- /opendj-config/src/main/java/org/forgerock/opendj/config/Tag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-config/src/main/java/org/forgerock/opendj/config/Tag.java -------------------------------------------------------------------------------- /opendj-config/src/main/java/org/forgerock/opendj/config/TopCfgDefn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-config/src/main/java/org/forgerock/opendj/config/TopCfgDefn.java -------------------------------------------------------------------------------- /opendj-config/src/test/java/org/forgerock/opendj/config/TestCfg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-config/src/test/java/org/forgerock/opendj/config/TestCfg.java -------------------------------------------------------------------------------- /opendj-core/clirr-ignored-api-changes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/clirr-ignored-api-changes.xml -------------------------------------------------------------------------------- /opendj-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/pom.xml -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/opendj/util/ASCIICharProp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/opendj/util/ASCIICharProp.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/opendj/util/Collections2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/opendj/util/Collections2.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/opendj/util/FipsStaticUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/opendj/util/FipsStaticUtils.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/opendj/util/Iterables.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/opendj/util/Iterables.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/opendj/util/Iterators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/opendj/util/Iterators.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/opendj/util/ManifestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/opendj/util/ManifestUtil.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/opendj/util/OperatingSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/opendj/util/OperatingSystem.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/opendj/util/PackedLong.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/opendj/util/PackedLong.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/opendj/util/Predicate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/opendj/util/Predicate.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/opendj/util/SmallSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/opendj/util/SmallSet.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/opendj/util/StaticUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/opendj/util/StaticUtils.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/opendj/util/SubstringReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/opendj/util/SubstringReader.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/opendj/util/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/opendj/util/package-info.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/reactive/Action.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/reactive/Action.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/reactive/Completable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/reactive/Completable.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/reactive/Consumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/reactive/Consumer.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/reactive/ReactiveFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/reactive/ReactiveFilter.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/reactive/ReactiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/reactive/ReactiveHandler.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/reactive/RxJavaStreams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/reactive/RxJavaStreams.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/reactive/Single.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/reactive/Single.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/reactive/Stream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/reactive/Stream.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/com/forgerock/reactive/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/com/forgerock/reactive/package-info.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/io/ASN1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/io/ASN1.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/io/ASN1Reader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/io/ASN1Reader.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/io/ASN1Writer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/io/ASN1Writer.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/io/LDAP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/io/LDAP.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/io/LDAPReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/io/LDAPReader.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/io/LDAPWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/io/LDAPWriter.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/io/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/io/package-info.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/AVA.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/AVA.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/AbstractEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/AbstractEntry.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/AddressMask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/AddressMask.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/Assertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/Assertion.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/Attribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/Attribute.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/AttributeFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/AttributeFilter.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/AttributeParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/AttributeParser.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/Attributes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/Attributes.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/Base64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/Base64.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/ByteSequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/ByteSequence.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/ByteString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/ByteString.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/ConditionResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/ConditionResult.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/Connection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/Connection.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/ConnectionPool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/ConnectionPool.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/Connections.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/Connections.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/DN.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/DN.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/DecodeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/DecodeException.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/DecodeOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/DecodeOptions.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/Entries.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/Entries.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/Entry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/Entry.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/EntryFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/EntryFactory.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/Filter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/Filter.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/FilterVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/FilterVisitor.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/Functions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/Functions.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/GSERParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/GSERParser.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/GeneralizedTime.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/GeneralizedTime.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/KeyManagers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/KeyManagers.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/LDAPListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/LDAPListener.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/LDAPUrl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/LDAPUrl.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/LdapException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/LdapException.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/LdapPromise.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/LdapPromise.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/LinkedAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/LinkedAttribute.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/LoadBalancer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/LoadBalancer.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/Matcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/Matcher.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/MemoryBackend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/MemoryBackend.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/Modification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/Modification.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/RDN.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/RDN.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/RequestContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/RequestContext.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/RequestHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/RequestHandler.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/ResultCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/ResultCode.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/RootDSE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/RootDSE.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/SchemaResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/SchemaResolver.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/SearchScope.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/SearchScope.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/SortKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/SortKey.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/TimeoutChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/TimeoutChecker.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/TreeMapEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/TreeMapEntry.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/TrustManagers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/TrustManagers.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/package-info.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/schema/NameForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/schema/NameForm.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/schema/Schema.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/schema/Schema.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/schema/Syntax.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/schema/Syntax.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/spi/Indexer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/spi/Indexer.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldap/spi/Provider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldap/spi/Provider.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldif/ChangeRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldif/ChangeRecord.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldif/EntryGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldif/EntryGenerator.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldif/EntryReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldif/EntryReader.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldif/EntryWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldif/EntryWriter.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldif/LDIF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldif/LDIF.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldif/LDIFEntryReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldif/LDIFEntryReader.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldif/LDIFEntryWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldif/LDIFEntryWriter.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldif/TemplateFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldif/TemplateFile.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldif/TemplateTag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldif/TemplateTag.java -------------------------------------------------------------------------------- /opendj-core/src/main/java/org/forgerock/opendj/ldif/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/java/org/forgerock/opendj/ldif/package-info.java -------------------------------------------------------------------------------- /opendj-core/src/main/javadoc/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/javadoc/overview.html -------------------------------------------------------------------------------- /opendj-core/src/main/resources/com/forgerock/opendj/ldap/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/resources/com/forgerock/opendj/ldap/core.properties -------------------------------------------------------------------------------- /opendj-core/src/main/resources/org/forgerock/opendj/ldif/cities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/resources/org/forgerock/opendj/ldif/cities -------------------------------------------------------------------------------- /opendj-core/src/main/resources/org/forgerock/opendj/ldif/first.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/resources/org/forgerock/opendj/ldif/first.names -------------------------------------------------------------------------------- /opendj-core/src/main/resources/org/forgerock/opendj/ldif/last.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/resources/org/forgerock/opendj/ldif/last.names -------------------------------------------------------------------------------- /opendj-core/src/main/resources/org/forgerock/opendj/ldif/states: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/resources/org/forgerock/opendj/ldif/states -------------------------------------------------------------------------------- /opendj-core/src/main/resources/org/forgerock/opendj/ldif/streets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/main/resources/org/forgerock/opendj/ldif/streets -------------------------------------------------------------------------------- /opendj-core/src/site/xdoc/index.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/site/xdoc/index.xml.vm -------------------------------------------------------------------------------- /opendj-core/src/test/java/com/forgerock/opendj/util/SmallSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/test/java/com/forgerock/opendj/util/SmallSetTest.java -------------------------------------------------------------------------------- /opendj-core/src/test/java/com/forgerock/opendj/util/UtilTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/test/java/com/forgerock/opendj/util/UtilTestCase.java -------------------------------------------------------------------------------- /opendj-core/src/test/java/org/forgerock/opendj/ldap/AVATestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/test/java/org/forgerock/opendj/ldap/AVATestCase.java -------------------------------------------------------------------------------- /opendj-core/src/test/java/org/forgerock/opendj/ldap/DNTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/test/java/org/forgerock/opendj/ldap/DNTestCase.java -------------------------------------------------------------------------------- /opendj-core/src/test/java/org/forgerock/opendj/ldap/EntriesTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/test/java/org/forgerock/opendj/ldap/EntriesTestCase.java -------------------------------------------------------------------------------- /opendj-core/src/test/java/org/forgerock/opendj/ldap/EntryTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/test/java/org/forgerock/opendj/ldap/EntryTestCase.java -------------------------------------------------------------------------------- /opendj-core/src/test/java/org/forgerock/opendj/ldap/FilterTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/test/java/org/forgerock/opendj/ldap/FilterTestCase.java -------------------------------------------------------------------------------- /opendj-core/src/test/java/org/forgerock/opendj/ldap/LDAPServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/test/java/org/forgerock/opendj/ldap/LDAPServer.java -------------------------------------------------------------------------------- /opendj-core/src/test/java/org/forgerock/opendj/ldap/LDAPUrlTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/test/java/org/forgerock/opendj/ldap/LDAPUrlTestCase.java -------------------------------------------------------------------------------- /opendj-core/src/test/java/org/forgerock/opendj/ldap/MockScheduler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/test/java/org/forgerock/opendj/ldap/MockScheduler.java -------------------------------------------------------------------------------- /opendj-core/src/test/java/org/forgerock/opendj/ldap/RDNTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/test/java/org/forgerock/opendj/ldap/RDNTestCase.java -------------------------------------------------------------------------------- /opendj-core/src/test/java/org/forgerock/opendj/ldap/SdkTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/test/java/org/forgerock/opendj/ldap/SdkTestCase.java -------------------------------------------------------------------------------- /opendj-core/src/test/java/org/forgerock/opendj/ldap/TestBase64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/test/java/org/forgerock/opendj/ldap/TestBase64.java -------------------------------------------------------------------------------- /opendj-core/src/test/java/org/forgerock/opendj/ldap/TestCaseUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/test/java/org/forgerock/opendj/ldap/TestCaseUtils.java -------------------------------------------------------------------------------- /opendj-core/src/test/java/org/forgerock/opendj/ldif/LDIFTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-core/src/test/java/org/forgerock/opendj/ldif/LDIFTestCase.java -------------------------------------------------------------------------------- /opendj-doc-generated-ref/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/pom.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/ant/zip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/ant/zip.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/admin-guide/chap-pta.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/admin-guide/chap-pta.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/admin-guide/chap-samba.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/admin-guide/chap-samba.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/admin-guide/chap-schema.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/admin-guide/chap-schema.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/admin-guide/chap-tuning.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/admin-guide/chap-tuning.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/admin-guide/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/admin-guide/index.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/admin-guide/preface.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/admin-guide/preface.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/attachments/Example.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/attachments/Example.ldif -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/images/JXplorer-dsml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/images/JXplorer-dsml.png -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/images/Manage-Entries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/images/Manage-Entries.png -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/images/Manage-Schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/images/Manage-Schema.png -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/images/create-vlv-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/images/create-vlv-index.png -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/images/custom-attrtype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/images/custom-attrtype.png -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/images/custom-objclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/images/custom-objclass.png -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/images/data-organization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/images/data-organization.png -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/images/equality-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/images/equality-index.png -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/images/index-entry-limit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/images/index-entry-limit.png -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/images/keystores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/images/keystores.png -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/images/standalone-repl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/images/standalone-repl.png -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/images/thumb_keystores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/images/thumb_keystores.png -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/install-guide/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/install-guide/index.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/install-guide/preface.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/install-guide/preface.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/man-pages/_attributes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/man-pages/_attributes.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/man-pages/_files.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/man-pages/_files.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/man-pages/_filters.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/man-pages/_filters.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/man-pages/man-opendj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/man-pages/man-opendj.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/reference/appendix-l10n.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/reference/appendix-l10n.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/reference/glossary.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/reference/glossary.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/reference/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/reference/index.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/reference/preface.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/reference/preface.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/server-dev-guide/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/server-dev-guide/index.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/asciidoc/server-dev-guide/preface.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/asciidoc/server-dev-guide/preface.adoc -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/assembly/config-ref-assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/assembly/config-ref-assembly.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/appendix-l10n.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/appendix-l10n.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-chaining.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-chaining.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-failover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-failover.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-groups.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-groups.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-indexing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-indexing.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-monitoring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-monitoring.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-mv-servers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-mv-servers.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-pta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-pta.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-pwd-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-pwd-policy.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-referrals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-referrals.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-samba.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-samba.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-schema.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-tuning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/chap-tuning.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/index.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/man-ldapcompare.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/man-ldapcompare.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/man-ldapmodify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/man-ldapmodify.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/man-ldapsearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/man-ldapsearch.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/man-ldifmodify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/man-ldifmodify.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/man-ldifsearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/man-ldifsearch.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/admin-guide/preface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/admin-guide/preface.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-controls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-controls.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-extended-ops.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-extended-ops.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-get-sdk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-get-sdk.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-i18n.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-i18n.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-ldif.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-ldif.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-reading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-reading.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-simple-proxy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-simple-proxy.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-writing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/dev-guide/chap-writing.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/dev-guide/images/ldap-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/dev-guide/images/ldap-tree.png -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/dev-guide/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/dev-guide/index.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/dev-guide/preface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/dev-guide/preface.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/install-guide/chap-jvm-opts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/install-guide/chap-jvm-opts.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/install-guide/chap-upgrade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/install-guide/chap-upgrade.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/install-guide/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/install-guide/index.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/install-guide/preface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/install-guide/preface.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/README.md -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/addrate-examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/addrate-examples.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/attributes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/attributes.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/authrate-examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/authrate-examples.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/backup-examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/backup-examples.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/base64-examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/base64-examples.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/dsconfig-examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/dsconfig-examples.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/exit-codes-0-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/exit-codes-0-1.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/exit-codes-0-89.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/exit-codes-0-89.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/exit-codes-0-gt0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/exit-codes-0-gt0.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/files.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/filters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/filters.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/index.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/ldifdiff-examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/ldifdiff-examples.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/makeldif-examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/makeldif-examples.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/makeldif-see-also.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/makeldif-see-also.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/man-configure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/man-configure.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/man-opendj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/man-opendj.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/modrate-examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/modrate-examples.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/restore-examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/restore-examples.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/setup-examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/setup-examples.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/start-ds-examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/start-ds-examples.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/status-examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/status-examples.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/man-pages/stop-ds-examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/man-pages/stop-ds-examples.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/release-notes/chap-feedback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/release-notes/chap-feedback.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/release-notes/chap-issues.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/release-notes/chap-issues.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/release-notes/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/release-notes/index.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/sdk-release-notes/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/sdk-release-notes/index.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/affiliation-fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/affiliation-fr.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/glossary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/glossary.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-authrate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-authrate.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-backup.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-base64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-base64.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-control-panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-control-panel.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-dbtest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-dbtest.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-dsconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-dsconfig.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-dsframework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-dsframework.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-dsreplication.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-dsreplication.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-export-ldif.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-export-ldif.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-import-ldif.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-import-ldif.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-ldapcompare.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-ldapcompare.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-ldapdelete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-ldapdelete.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-ldapmodify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-ldapmodify.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-ldapsearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-ldapsearch.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-ldif-diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-ldif-diff.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-ldifdiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-ldifdiff.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-ldifmodify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-ldifmodify.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-ldifsearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-ldifsearch.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-list-backends.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-list-backends.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-make-ldif.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-make-ldif.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-manage-account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-manage-account.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-manage-tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-manage-tasks.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-modrate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-modrate.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-rebuild-index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-rebuild-index.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-restore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-restore.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-searchrate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-searchrate.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-setup.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-start-ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-start-ds.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-status.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-stop-ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-stop-ds.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-uninstall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-uninstall.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-upgrade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-upgrade.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/man-verify-index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/man-verify-index.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/screen-upgrade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/screen-upgrade.xml -------------------------------------------------------------------------------- /opendj-doc-generated-ref/src/main/docbkx/shared/sec-release-levels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-generated-ref/src/main/docbkx/shared/sec-release-levels.xml -------------------------------------------------------------------------------- /opendj-doc-maven-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-maven-plugin/pom.xml -------------------------------------------------------------------------------- /opendj-doc-maven-plugin/src/main/resources/config-ref/pageaction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-maven-plugin/src/main/resources/config-ref/pageaction.gif -------------------------------------------------------------------------------- /opendj-doc-maven-plugin/src/main/resources/config-ref/tab_selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-doc-maven-plugin/src/main/resources/config-ref/tab_selected.gif -------------------------------------------------------------------------------- /opendj-dsml-servlet/legal-notices/THIRDPARTYREADME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-dsml-servlet/legal-notices/THIRDPARTYREADME.txt -------------------------------------------------------------------------------- /opendj-dsml-servlet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-dsml-servlet/pom.xml -------------------------------------------------------------------------------- /opendj-dsml-servlet/resources/schema/DSMLv2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-dsml-servlet/resources/schema/DSMLv2.xsd -------------------------------------------------------------------------------- /opendj-dsml-servlet/resources/schema/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-dsml-servlet/resources/schema/bindings.xjb -------------------------------------------------------------------------------- /opendj-dsml-servlet/resources/webapp/sun-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-dsml-servlet/resources/webapp/sun-web.xml -------------------------------------------------------------------------------- /opendj-dsml-servlet/resources/webapp/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-dsml-servlet/resources/webapp/web.xml -------------------------------------------------------------------------------- /opendj-dsml-servlet/src/license/THIRD-PARTY.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-dsml-servlet/src/license/THIRD-PARTY.properties -------------------------------------------------------------------------------- /opendj-embedded-server-examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-embedded-server-examples/README -------------------------------------------------------------------------------- /opendj-embedded-server-examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-embedded-server-examples/pom.xml -------------------------------------------------------------------------------- /opendj-embedded-server-examples/src/main/assembly/examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-embedded-server-examples/src/main/assembly/examples.xml -------------------------------------------------------------------------------- /opendj-embedded-server-examples/src/main/javadoc/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-embedded-server-examples/src/main/javadoc/overview.html -------------------------------------------------------------------------------- /opendj-embedded-server-examples/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-embedded-server-examples/src/site/site.xml -------------------------------------------------------------------------------- /opendj-embedded-server-examples/src/site/xdoc/index.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-embedded-server-examples/src/site/xdoc/index.xml.vm -------------------------------------------------------------------------------- /opendj-embedded/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-embedded/pom.xml -------------------------------------------------------------------------------- /opendj-embedded/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-embedded/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /opendj-embedded/src/test/resources/opendj/99-users.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-embedded/src/test/resources/opendj/99-users.ldif -------------------------------------------------------------------------------- /opendj-embedded/src/test/resources/opendj/data.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-embedded/src/test/resources/opendj/data.ldif -------------------------------------------------------------------------------- /opendj-grizzly/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-grizzly/pom.xml -------------------------------------------------------------------------------- /opendj-grizzly/src/site/xdoc/index.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-grizzly/src/site/xdoc/index.xml.vm -------------------------------------------------------------------------------- /opendj-ldap-sdk-examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-sdk-examples/pom.xml -------------------------------------------------------------------------------- /opendj-ldap-sdk-examples/src/main/assembly/examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-sdk-examples/src/main/assembly/examples.xml -------------------------------------------------------------------------------- /opendj-ldap-sdk-examples/src/main/javadoc/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-sdk-examples/src/main/javadoc/overview.html -------------------------------------------------------------------------------- /opendj-ldap-sdk-examples/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-sdk-examples/src/site/site.xml -------------------------------------------------------------------------------- /opendj-ldap-sdk-examples/src/site/xdoc/index.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-sdk-examples/src/site/xdoc/index.xml.vm -------------------------------------------------------------------------------- /opendj-ldap-sdk-examples/src/test/bin/checkRewriterProxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-sdk-examples/src/test/bin/checkRewriterProxy.sh -------------------------------------------------------------------------------- /opendj-ldap-toolkit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/README -------------------------------------------------------------------------------- /opendj-ldap-toolkit/legal-notices/THIRDPARTYREADME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/legal-notices/THIRDPARTYREADME.txt -------------------------------------------------------------------------------- /opendj-ldap-toolkit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/pom.xml -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bat/addrate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bat/addrate.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bat/authrate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bat/authrate.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bat/base64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bat/base64.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bat/ldapcompare.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bat/ldapcompare.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bat/ldapdelete.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bat/ldapdelete.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bat/ldapmodify.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bat/ldapmodify.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bat/ldappasswordmodify.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bat/ldappasswordmodify.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bat/ldapsearch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bat/ldapsearch.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bat/ldifdiff.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bat/ldifdiff.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bat/ldifmodify.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bat/ldifmodify.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bat/ldifsearch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bat/ldifsearch.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bat/makeldif.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bat/makeldif.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bat/modrate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bat/modrate.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bat/searchrate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bat/searchrate.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bin/addrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bin/addrate -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bin/authrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bin/authrate -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bin/base64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bin/base64 -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bin/ldapcompare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bin/ldapcompare -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bin/ldapdelete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bin/ldapdelete -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bin/ldapmodify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bin/ldapmodify -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bin/ldappasswordmodify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bin/ldappasswordmodify -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bin/ldapsearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bin/ldapsearch -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bin/ldifdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bin/ldifdiff -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bin/ldifmodify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bin/ldifmodify -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bin/ldifsearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bin/ldifsearch -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bin/makeldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bin/makeldif -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bin/modrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bin/modrate -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/bin/searchrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/bin/searchrate -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/descriptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/descriptor.xml -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/libbat/_client-script.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/libbat/_client-script.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/libbat/_script-util.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/libbat/_script-util.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/libbat/setcp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/libbat/setcp.bat -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/libbin/_client-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/libbin/_client-script.sh -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/main/assembly/libbin/_script-util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/main/assembly/libbin/_script-util.sh -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/site/xdoc/index.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/site/xdoc/index.xml.vm -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/test/resources/dummy-truststore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/test/resources/dummy-truststore -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/test/resources/expected_output.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/test/resources/expected_output.ldif -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/test/resources/expected_output_80_column.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/test/resources/expected_output_80_column.ldif -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/test/resources/invalid_test_template.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/test/resources/invalid_test_template.ldif -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/test/resources/ldifdiff/diff-nochanges.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/test/resources/ldifdiff/diff-nochanges.ldif -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/test/resources/ldifdiff/diff-singleentry.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/test/resources/ldifdiff/diff-singleentry.ldif -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/test/resources/ldifdiff/ignore-attributes: -------------------------------------------------------------------------------- 1 | description 2 | objectcLASs 3 | -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/test/resources/ldifdiff/ignore-entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/test/resources/ldifdiff/ignore-entries -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/test/resources/ldifdiff/source-empty.ldif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/test/resources/ldifdiff/target-empty.ldif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/test/resources/ldifmodify/expected.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/test/resources/ldifmodify/expected.ldif -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/test/resources/ldifmodify/modifications.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/test/resources/ldifmodify/modifications.ldif -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/test/resources/ldifmodify/source.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/test/resources/ldifmodify/source.ldif -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/test/resources/ldifsearch.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/test/resources/ldifsearch.ldif -------------------------------------------------------------------------------- /opendj-ldap-toolkit/src/test/resources/valid_test_template.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-ldap-toolkit/src/test/resources/valid_test_template.ldif -------------------------------------------------------------------------------- /opendj-legacy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-legacy/pom.xml -------------------------------------------------------------------------------- /opendj-legacy/src/main/java/org/opends/legacy/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-legacy/src/main/java/org/opends/legacy/package-info.java -------------------------------------------------------------------------------- /opendj-legacy/src/main/java/org/opends/server/api/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-legacy/src/main/java/org/opends/server/api/package-info.java -------------------------------------------------------------------------------- /opendj-legacy/src/main/java/org/opends/server/schema/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-legacy/src/main/java/org/opends/server/schema/package-info.java -------------------------------------------------------------------------------- /opendj-maven-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-maven-plugin/pom.xml -------------------------------------------------------------------------------- /opendj-maven-plugin/src/main/resources/config/stylesheets/admin.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-maven-plugin/src/main/resources/config/stylesheets/admin.xsd -------------------------------------------------------------------------------- /opendj-maven-plugin/src/main/resources/config/stylesheets/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-maven-plugin/src/main/resources/config/stylesheets/catalog.xml -------------------------------------------------------------------------------- /opendj-maven-plugin/src/main/resources/config/stylesheets/clientMO.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-maven-plugin/src/main/resources/config/stylesheets/clientMO.xsl -------------------------------------------------------------------------------- /opendj-maven-plugin/src/main/resources/config/stylesheets/metaMO.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-maven-plugin/src/main/resources/config/stylesheets/metaMO.xsl -------------------------------------------------------------------------------- /opendj-maven-plugin/src/main/resources/config/stylesheets/serverMO.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-maven-plugin/src/main/resources/config/stylesheets/serverMO.xsl -------------------------------------------------------------------------------- /opendj-maven-plugin/src/main/resources/config/stylesheets/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-maven-plugin/src/main/resources/config/stylesheets/xml.xsd -------------------------------------------------------------------------------- /opendj-openidm-account-change-notification-handler/.gitignore: -------------------------------------------------------------------------------- 1 | dependency-reduced-pom.xml 2 | -------------------------------------------------------------------------------- /opendj-openidm-account-change-notification-handler/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-openidm-account-change-notification-handler/pom.xml -------------------------------------------------------------------------------- /opendj-packages/opendj-deb/opendj-deb-standard/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-deb/opendj-deb-standard/pom.xml -------------------------------------------------------------------------------- /opendj-packages/opendj-deb/opendj-deb-standard/resources/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-deb/opendj-deb-standard/resources/copyright -------------------------------------------------------------------------------- /opendj-packages/opendj-deb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-deb/pom.xml -------------------------------------------------------------------------------- /opendj-packages/opendj-deb/resources/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-deb/resources/changelog -------------------------------------------------------------------------------- /opendj-packages/opendj-deb/resources/control/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-deb/resources/control/control -------------------------------------------------------------------------------- /opendj-packages/opendj-deb/resources/control/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-deb/resources/control/postinst -------------------------------------------------------------------------------- /opendj-packages/opendj-deb/resources/control/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-deb/resources/control/postrm -------------------------------------------------------------------------------- /opendj-packages/opendj-deb/resources/control/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-deb/resources/control/preinst -------------------------------------------------------------------------------- /opendj-packages/opendj-deb/resources/control/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-deb/resources/control/prerm -------------------------------------------------------------------------------- /opendj-packages/opendj-docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-docker/Dockerfile -------------------------------------------------------------------------------- /opendj-packages/opendj-docker/Dockerfile-alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-docker/Dockerfile-alpine -------------------------------------------------------------------------------- /opendj-packages/opendj-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-docker/README.md -------------------------------------------------------------------------------- /opendj-packages/opendj-docker/bootstrap/replicate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-docker/bootstrap/replicate.sh -------------------------------------------------------------------------------- /opendj-packages/opendj-docker/bootstrap/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-docker/bootstrap/setup.sh -------------------------------------------------------------------------------- /opendj-packages/opendj-docker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-docker/pom.xml -------------------------------------------------------------------------------- /opendj-packages/opendj-docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-docker/run.sh -------------------------------------------------------------------------------- /opendj-packages/opendj-msi/opendj-msi-standard/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-msi/opendj-msi-standard/pom.xml -------------------------------------------------------------------------------- /opendj-packages/opendj-msi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-msi/pom.xml -------------------------------------------------------------------------------- /opendj-packages/opendj-openshift-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-openshift-template/README.md -------------------------------------------------------------------------------- /opendj-packages/opendj-rpm/opendj-rpm-standard/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-rpm/opendj-rpm-standard/pom.xml -------------------------------------------------------------------------------- /opendj-packages/opendj-rpm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-rpm/pom.xml -------------------------------------------------------------------------------- /opendj-packages/opendj-rpm/resources/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-rpm/resources/changelog -------------------------------------------------------------------------------- /opendj-packages/opendj-rpm/resources/specs/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-rpm/resources/specs/clean.sh -------------------------------------------------------------------------------- /opendj-packages/opendj-rpm/resources/specs/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-rpm/resources/specs/postinstall.sh -------------------------------------------------------------------------------- /opendj-packages/opendj-rpm/resources/specs/postuninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-rpm/resources/specs/postuninstall.sh -------------------------------------------------------------------------------- /opendj-packages/opendj-rpm/resources/specs/preinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-rpm/resources/specs/preinstall.sh -------------------------------------------------------------------------------- /opendj-packages/opendj-rpm/resources/specs/preuninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-rpm/resources/specs/preuninstall.sh -------------------------------------------------------------------------------- /opendj-packages/opendj-svr4/opendj-svr4-standard/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-svr4/opendj-svr4-standard/pom.xml -------------------------------------------------------------------------------- /opendj-packages/opendj-svr4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/opendj-svr4/pom.xml -------------------------------------------------------------------------------- /opendj-packages/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/pom.xml -------------------------------------------------------------------------------- /opendj-packages/resources/sysv/opendj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-packages/resources/sysv/opendj -------------------------------------------------------------------------------- /opendj-rest2ldap-servlet/legal-notices/THIRDPARTYREADME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-rest2ldap-servlet/legal-notices/THIRDPARTYREADME.txt -------------------------------------------------------------------------------- /opendj-rest2ldap-servlet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-rest2ldap-servlet/pom.xml -------------------------------------------------------------------------------- /opendj-rest2ldap-servlet/src/main/webapp/WEB-INF/classes/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-rest2ldap-servlet/src/main/webapp/WEB-INF/classes/config.json -------------------------------------------------------------------------------- /opendj-rest2ldap-servlet/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-rest2ldap-servlet/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /opendj-rest2ldap-servlet/src/site/xdoc/index.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-rest2ldap-servlet/src/site/xdoc/index.xml.vm -------------------------------------------------------------------------------- /opendj-rest2ldap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-rest2ldap/README -------------------------------------------------------------------------------- /opendj-rest2ldap/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-rest2ldap/pom.xml -------------------------------------------------------------------------------- /opendj-rest2ldap/src/site/xdoc/index.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-rest2ldap/src/site/xdoc/index.xml.vm -------------------------------------------------------------------------------- /opendj-server-example-plugin/README.example.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-example-plugin/README.example.plugin -------------------------------------------------------------------------------- /opendj-server-example-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-example-plugin/pom.xml -------------------------------------------------------------------------------- /opendj-server-example-plugin/src/license/THIRD-PARTY.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-example-plugin/src/license/THIRD-PARTY.properties -------------------------------------------------------------------------------- /opendj-server-example-plugin/src/main/assembly/descriptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-example-plugin/src/main/assembly/descriptor.xml -------------------------------------------------------------------------------- /opendj-server-example-plugin/src/site/xdoc/index.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-example-plugin/src/site/xdoc/index.xml.vm -------------------------------------------------------------------------------- /opendj-server-legacy/build.properties: -------------------------------------------------------------------------------- 1 | opendmk.lib.dir= 2 | license.file= 3 | -------------------------------------------------------------------------------- /opendj-server-legacy/doc/README.txt: -------------------------------------------------------------------------------- 1 | OpenDJ server documentation sources are under src/main/docbkx. -------------------------------------------------------------------------------- /opendj-server-legacy/legal-notices/THIRDPARTYREADME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/legal-notices/THIRDPARTYREADME.txt -------------------------------------------------------------------------------- /opendj-server-legacy/lib/launcher_administrator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/lib/launcher_administrator.exe -------------------------------------------------------------------------------- /opendj-server-legacy/lib/opendj_service.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/lib/opendj_service.exe -------------------------------------------------------------------------------- /opendj-server-legacy/lib/winlauncher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/lib/winlauncher.exe -------------------------------------------------------------------------------- /opendj-server-legacy/opendjbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/opendjbackground.png -------------------------------------------------------------------------------- /opendj-server-legacy/opendjsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/opendjsplash.png -------------------------------------------------------------------------------- /opendj-server-legacy/opendmk/jdmkrt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/opendmk/jdmkrt.jar -------------------------------------------------------------------------------- /opendj-server-legacy/opendmk/jdmktk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/opendmk/jdmktk.jar -------------------------------------------------------------------------------- /opendj-server-legacy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/pom.xml -------------------------------------------------------------------------------- /opendj-server-legacy/replace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/replace.rb -------------------------------------------------------------------------------- /opendj-server-legacy/resource/FindJavaHome.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/FindJavaHome.class -------------------------------------------------------------------------------- /opendj-server-legacy/resource/FindJavaHome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/FindJavaHome.java -------------------------------------------------------------------------------- /opendj-server-legacy/resource/Messages.java.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/Messages.java.stub -------------------------------------------------------------------------------- /opendj-server-legacy/resource/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/README -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/_client-script.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/_client-script.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/_client-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/_client-script.sh -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/_mixed-script.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/_mixed-script.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/_mixed-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/_mixed-script.sh -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/_script-util.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/_script-util.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/_script-util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/_script-util.sh -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/_server-script.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/_server-script.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/_server-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/_server-script.sh -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/backendstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/backendstat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/backendstat.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/backendstat.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/backup -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/backup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/backup.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/control-panel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/control-panel -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/control-panel.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/control-panel.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/create-rc-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/create-rc-script -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/dsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/dsconfig -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/dsconfig.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/dsconfig.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/dsreplication: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/dsreplication -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/dsreplication.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/dsreplication.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/encode-password: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/encode-password -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/encode-password.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/encode-password.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/export-ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/export-ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/export-ldif.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/export-ldif.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/import-ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/import-ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/import-ldif.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/import-ldif.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/list-backends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/list-backends -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/list-backends.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/list-backends.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/manage-account: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/manage-account -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/manage-account.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/manage-account.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/manage-tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/manage-tasks -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/manage-tasks.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/manage-tasks.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/rebuild-index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/rebuild-index -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/rebuild-index.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/rebuild-index.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/restore -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/restore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/restore.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/setcp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/setcp.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/start-ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/start-ds -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/start-ds.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/start-ds.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/status -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/status.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/status.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/stop-ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/stop-ds -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/stop-ds.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/stop-ds.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/verify-index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/verify-index -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/verify-index.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/verify-index.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/bin/windows-service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/bin/windows-service.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/config/admin-backend.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/config/admin-backend.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/config/config.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/config/config.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/config/java.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/config/java.properties -------------------------------------------------------------------------------- /opendj-server-legacy/resource/config/tools.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/config/tools.properties -------------------------------------------------------------------------------- /opendj-server-legacy/resource/config/wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/config/wordlist.txt -------------------------------------------------------------------------------- /opendj-server-legacy/resource/images/opendj_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/images/opendj_logo.png -------------------------------------------------------------------------------- /opendj-server-legacy/resource/log-message-reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/log-message-reference.xml -------------------------------------------------------------------------------- /opendj-server-legacy/resource/mac/ControlPanel.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/mac/ControlPanel.app/Contents/Info.plist -------------------------------------------------------------------------------- /opendj-server-legacy/resource/mac/ControlPanel.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /opendj-server-legacy/resource/mac/QuickSetup.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/mac/QuickSetup.app/Contents/Info.plist -------------------------------------------------------------------------------- /opendj-server-legacy/resource/mac/QuickSetup.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /opendj-server-legacy/resource/mac/Uninstall.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/mac/Uninstall.app/Contents/Info.plist -------------------------------------------------------------------------------- /opendj-server-legacy/resource/mac/Uninstall.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /opendj-server-legacy/resource/messages/account-disabled.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/messages/account-disabled.template -------------------------------------------------------------------------------- /opendj-server-legacy/resource/messages/account-enabled.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/messages/account-enabled.template -------------------------------------------------------------------------------- /opendj-server-legacy/resource/messages/account-expired.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/messages/account-expired.template -------------------------------------------------------------------------------- /opendj-server-legacy/resource/messages/account-idle-locked.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/messages/account-idle-locked.template -------------------------------------------------------------------------------- /opendj-server-legacy/resource/messages/account-reset-locked.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/messages/account-reset-locked.template -------------------------------------------------------------------------------- /opendj-server-legacy/resource/messages/account-unlocked.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/messages/account-unlocked.template -------------------------------------------------------------------------------- /opendj-server-legacy/resource/messages/password-changed.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/messages/password-changed.template -------------------------------------------------------------------------------- /opendj-server-legacy/resource/messages/password-expired.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/messages/password-expired.template -------------------------------------------------------------------------------- /opendj-server-legacy/resource/messages/password-expiring.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/messages/password-expiring.template -------------------------------------------------------------------------------- /opendj-server-legacy/resource/messages/password-reset.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/messages/password-reset.template -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/00-core.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/00-core.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/01-pwpolicy.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/01-pwpolicy.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/02-config.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/02-config.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/03-changelog.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/03-changelog.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/03-keystore.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/03-keystore.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/03-pwpolicyextension.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/03-pwpolicyextension.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/03-rfc2713.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/03-rfc2713.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/03-rfc2714.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/03-rfc2714.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/03-rfc2739.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/03-rfc2739.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/03-rfc2926.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/03-rfc2926.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/03-rfc3112.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/03-rfc3112.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/03-rfc3712.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/03-rfc3712.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/03-uddiv3.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/03-uddiv3.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/04-rfc2307bis.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/04-rfc2307bis.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/05-rfc4876.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/05-rfc4876.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/05-samba.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/05-samba.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/05-solaris.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/05-solaris.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/06-compat.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/06-compat.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/schema/99-msad.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/schema/99-msad.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/resource/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/setup -------------------------------------------------------------------------------- /opendj-server-legacy/resource/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/setup.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/uninstall -------------------------------------------------------------------------------- /opendj-server-legacy/resource/uninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/uninstall.bat -------------------------------------------------------------------------------- /opendj-server-legacy/resource/upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/upgrade -------------------------------------------------------------------------------- /opendj-server-legacy/resource/upgrade.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/resource/upgrade.bat -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/AccessControlHandlerCfgDefn_ca_ES.properties: -------------------------------------------------------------------------------- 1 | user-friendly-name=Encarregat del control d'acc\u00e9s 2 | -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/AccessControlHandlerCfgDefn_pl.properties: -------------------------------------------------------------------------------- 1 | user-friendly-name=Uchwyt Kontroli Dost\u0119pu 2 | -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/AdministrationConnectorCfgDefn_ca_ES.properties: -------------------------------------------------------------------------------- 1 | user-friendly-name=Connector d'administraci\u00f3 2 | -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/AlertHandlerCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/AlertHandlerCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/BackendCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/BackendCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/BackendCfgDefn_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/BackendCfgDefn_de.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/BackendCfgDefn_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/BackendCfgDefn_es.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/BackendCfgDefn_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/BackendCfgDefn_fr.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/BackendCfgDefn_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/BackendCfgDefn_ja.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/BackendCfgDefn_ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/BackendCfgDefn_ko.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/BackendCfgDefn_pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/BackendCfgDefn_pl.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/BackendIndexCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/BackendIndexCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/CoreSchemaCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/CoreSchemaCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/CryptoManagerCfgDefn_ca_ES.properties: -------------------------------------------------------------------------------- 1 | user-friendly-name=Gestor d'encriptat 2 | -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/CryptoManagerCfgDefn_pl.properties: -------------------------------------------------------------------------------- 1 | user-friendly-name=Menad\u017cer Szyfrowania 2 | -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/DebugTargetCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/DebugTargetCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/EntryCacheCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/EntryCacheCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/GlobalCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/GlobalCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/GlobalCfgDefn_ca_ES.properties: -------------------------------------------------------------------------------- 1 | user-friendly-name=Configuraci\u00f3 global 2 | -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/GlobalCfgDefn_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/GlobalCfgDefn_de.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/GlobalCfgDefn_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/GlobalCfgDefn_es.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/GlobalCfgDefn_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/GlobalCfgDefn_fr.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/GlobalCfgDefn_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/GlobalCfgDefn_ja.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/GlobalCfgDefn_ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/GlobalCfgDefn_ko.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/GlobalCfgDefn_pl.properties: -------------------------------------------------------------------------------- 1 | user-friendly-name=Globalna Konfiguracja 2 | -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/GlobalCfgDefn_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/GlobalCfgDefn_zh_CN.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/GlobalCfgDefn_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/GlobalCfgDefn_zh_TW.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/LDIFBackendCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/LDIFBackendCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/LocalDBIndexCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/LocalDBIndexCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/LogPublisherCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/LogPublisherCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/MatchingRuleCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/MatchingRuleCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/NullBackendCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/NullBackendCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/PluginCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/PluginCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/PluginCfgDefn_ca_ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/PluginCfgDefn_ca_ES.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/PluginCfgDefn_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/PluginCfgDefn_de.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/PluginCfgDefn_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/PluginCfgDefn_es.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/PluginCfgDefn_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/PluginCfgDefn_fr.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/PluginCfgDefn_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/PluginCfgDefn_ja.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/PluginCfgDefn_ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/PluginCfgDefn_ko.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/PluginCfgDefn_pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/PluginCfgDefn_pl.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/PluginCfgDefn_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/PluginCfgDefn_zh_CN.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/PluginCfgDefn_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/PluginCfgDefn_zh_TW.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/PluginRootCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/PluginRootCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootCfgDefn_ca_ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootCfgDefn_ca_ES.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootCfgDefn_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootCfgDefn_de.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootCfgDefn_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootCfgDefn_es.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootCfgDefn_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootCfgDefn_fr.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootCfgDefn_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootCfgDefn_ja.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootCfgDefn_ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootCfgDefn_ko.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootCfgDefn_pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootCfgDefn_pl.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootCfgDefn_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootCfgDefn_zh_CN.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootCfgDefn_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootCfgDefn_zh_TW.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootDNCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootDNCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootDNCfgDefn_ca_ES.properties: -------------------------------------------------------------------------------- 1 | user-friendly-name=DN arrel 2 | -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootDNCfgDefn_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootDNCfgDefn_de.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootDNCfgDefn_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootDNCfgDefn_es.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootDNCfgDefn_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootDNCfgDefn_fr.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootDNCfgDefn_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootDNCfgDefn_ja.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootDNCfgDefn_ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootDNCfgDefn_ko.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootDNCfgDefn_pl.properties: -------------------------------------------------------------------------------- 1 | user-friendly-name=Korze\u0144 DN 2 | -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootDNCfgDefn_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootDNCfgDefn_zh_CN.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootDNCfgDefn_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootDNCfgDefn_zh_TW.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootDNUserCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/RootDNUserCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/RootDSEBackendCfgDefn_pl.properties: -------------------------------------------------------------------------------- 1 | user-friendly-name=Zaplecze G\u0142\u00f3wnego DSE 2 | -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/TaskBackendCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/TaskBackendCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/VersionMonitorProviderCfgDefn_pl.properties: -------------------------------------------------------------------------------- 1 | user-friendly-name=Dostawca Monitora Wersji 2 | -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/WorkQueueCfgDefn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/WorkQueueCfgDefn.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/WorkQueueCfgDefn_ca_ES.properties: -------------------------------------------------------------------------------- 1 | user-friendly-name=Cua de treballs 2 | -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/WorkQueueCfgDefn_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/WorkQueueCfgDefn_de.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/WorkQueueCfgDefn_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/WorkQueueCfgDefn_es.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/WorkQueueCfgDefn_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/WorkQueueCfgDefn_fr.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/WorkQueueCfgDefn_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/WorkQueueCfgDefn_ja.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/WorkQueueCfgDefn_ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/admin/messages/WorkQueueCfgDefn_ko.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/admin/messages/WorkQueueCfgDefn_pl.properties: -------------------------------------------------------------------------------- 1 | user-friendly-name=Kolejka Robocza 2 | -------------------------------------------------------------------------------- /opendj-server-legacy/src/build-tools/windows/EventLogMsg.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/build-tools/windows/EventLogMsg.mc -------------------------------------------------------------------------------- /opendj-server-legacy/src/build-tools/windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/build-tools/windows/Makefile -------------------------------------------------------------------------------- /opendj-server-legacy/src/build-tools/windows/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/build-tools/windows/README -------------------------------------------------------------------------------- /opendj-server-legacy/src/build-tools/windows/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/build-tools/windows/common.c -------------------------------------------------------------------------------- /opendj-server-legacy/src/build-tools/windows/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/build-tools/windows/common.h -------------------------------------------------------------------------------- /opendj-server-legacy/src/build-tools/windows/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/build-tools/windows/service.c -------------------------------------------------------------------------------- /opendj-server-legacy/src/build-tools/windows/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/build-tools/windows/service.h -------------------------------------------------------------------------------- /opendj-server-legacy/src/build-tools/windows/winlauncher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/build-tools/windows/winlauncher.c -------------------------------------------------------------------------------- /opendj-server-legacy/src/build-tools/windows/winlauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/build-tools/windows/winlauncher.h -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/assembly/example-plugin-assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/assembly/example-plugin-assembly.xml -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/assembly/opendj-archive-assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/assembly/opendj-archive-assembly.xml -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/assembly/opendj-archive-component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/assembly/opendj-archive-component.xml -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/assembly/snmp-jar-assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/assembly/snmp-jar-assembly.xml -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/docbkx/man-pages/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/docbkx/man-pages/index.xml -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/java/org/opends/quicksetup/Launcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/java/org/opends/quicksetup/Launcher.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/java/org/opends/quicksetup/Status.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/java/org/opends/quicksetup/Status.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/java/org/opends/quicksetup/Step.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/java/org/opends/quicksetup/Step.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/java/org/opends/quicksetup/UserData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/java/org/opends/quicksetup/UserData.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/java/org/opends/server/api/Backend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/java/org/opends/server/api/Backend.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/java/org/opends/server/api/Group.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/java/org/opends/server/api/Group.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/java/org/opends/server/tools/StopDS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/java/org/opends/server/tools/StopDS.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/java/org/opends/server/types/Entry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/java/org/opends/server/types/Entry.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/java/org/opends/server/util/Crypt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/java/org/opends/server/util/Crypt.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/java/org/slf4j/impl/StaticMDCBinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/java/org/slf4j/impl/StaticMDCBinder.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/java/org/slf4j/impl/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/java/org/slf4j/impl/package-info.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/resources/META-INF/opendj.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/resources/META-INF/opendj.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/resources/META-INF/product/buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/resources/META-INF/product/buildinfo -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/resources/META-INF/services/org.slf4j.spi.SLF4JServiceProvider: -------------------------------------------------------------------------------- 1 | org.forgerock.opendj.slf4j.OpenDJServiceProvider -------------------------------------------------------------------------------- /opendj-server-legacy/src/main/resources/bootstrap/manifest-bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/main/resources/bootstrap/manifest-bootstrap -------------------------------------------------------------------------------- /opendj-server-legacy/src/messages/org/opends/messages/admin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/messages/org/opends/messages/admin.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/messages/org/opends/messages/admin_ca_ES.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opendj-server-legacy/src/messages/org/opends/messages/admin_pl.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opendj-server-legacy/src/messages/org/opends/messages/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/messages/org/opends/messages/core.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/messages/org/opends/messages/task.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/messages/org/opends/messages/task.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/messages/org/opends/messages/tool.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/messages/org/opends/messages/tool.properties -------------------------------------------------------------------------------- /opendj-server-legacy/src/site/xdoc/index.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/site/xdoc/index.xml.vm -------------------------------------------------------------------------------- /opendj-server-legacy/src/snmp/resource/config/config.snmp.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/snmp/resource/config/config.snmp.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/src/snmp/resource/mib/SNMPV2-SMI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/snmp/resource/mib/SNMPV2-SMI.txt -------------------------------------------------------------------------------- /opendj-server-legacy/src/snmp/resource/mib/mib_core.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/snmp/resource/mib/mib_core.txt -------------------------------------------------------------------------------- /opendj-server-legacy/src/snmp/resource/mib/rfc1213.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/snmp/resource/mib/rfc1213.txt -------------------------------------------------------------------------------- /opendj-server-legacy/src/snmp/resource/mib/rfc2021.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/snmp/resource/mib/rfc2021.txt -------------------------------------------------------------------------------- /opendj-server-legacy/src/snmp/resource/mib/rfc2605.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/snmp/resource/mib/rfc2605.txt -------------------------------------------------------------------------------- /opendj-server-legacy/src/snmp/resource/mib/rfc2788.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/snmp/resource/mib/rfc2788.txt -------------------------------------------------------------------------------- /opendj-server-legacy/src/snmp/resource/security/opendj-snmp.security: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/snmp/resource/security/opendj-snmp.security -------------------------------------------------------------------------------- /opendj-server-legacy/src/snmp/src/org/opends/server/snmp/DsEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/snmp/src/org/opends/server/snmp/DsEntry.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/test/java/org/opends/server/SuiteRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/test/java/org/opends/server/SuiteRunner.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/test/java/org/opends/server/TestListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/test/java/org/opends/server/TestListener.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/test/java/org/opends/server/types/TestDN.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/test/java/org/opends/server/types/TestDN.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/test/java/org/opends/server/util/Args.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/test/java/org/opends/server/util/Args.java -------------------------------------------------------------------------------- /opendj-server-legacy/src/test/resources/issue496.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/src/test/resources/issue496.ldif -------------------------------------------------------------------------------- /opendj-server-legacy/tests/default.installer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/tests/default.installer.properties -------------------------------------------------------------------------------- /opendj-server-legacy/tests/installer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/tests/installer.xml -------------------------------------------------------------------------------- /opendj-server-legacy/tests/unit-tests-testng/resource/client-cert.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/tests/unit-tests-testng/resource/client-cert.p12 -------------------------------------------------------------------------------- /opendj-server-legacy/tests/unit-tests-testng/resource/client.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/tests/unit-tests-testng/resource/client.keystore -------------------------------------------------------------------------------- /opendj-server-legacy/tests/unit-tests-testng/resource/el-password.pin: -------------------------------------------------------------------------------- 1 | changeit 2 | -------------------------------------------------------------------------------- /opendj-server-legacy/tests/unit-tests-testng/resource/server-cert.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/tests/unit-tests-testng/resource/server-cert.p12 -------------------------------------------------------------------------------- /opendj-server-legacy/tests/unit-tests-testng/resource/server.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-legacy/tests/unit-tests-testng/resource/server.keystore -------------------------------------------------------------------------------- /opendj-server-msad-plugin/README.msad.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-msad-plugin/README.msad.plugin -------------------------------------------------------------------------------- /opendj-server-msad-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-msad-plugin/pom.xml -------------------------------------------------------------------------------- /opendj-server-msad-plugin/src/main/assembly/config/msad-plugin.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-msad-plugin/src/main/assembly/config/msad-plugin.ldif -------------------------------------------------------------------------------- /opendj-server-msad-plugin/src/main/assembly/descriptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-msad-plugin/src/main/assembly/descriptor.xml -------------------------------------------------------------------------------- /opendj-server-msad-plugin/src/main/java/opendj/MsadPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-msad-plugin/src/main/java/opendj/MsadPlugin.java -------------------------------------------------------------------------------- /opendj-server-msad-plugin/src/main/java/opendj/Package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server-msad-plugin/src/main/java/opendj/Package.xml -------------------------------------------------------------------------------- /opendj-server-msad-plugin/src/main/java/opendj/package-info.java: -------------------------------------------------------------------------------- 1 | package opendj; 2 | -------------------------------------------------------------------------------- /opendj-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server/pom.xml -------------------------------------------------------------------------------- /opendj-server/src/main/resources/META-INF/product/opendj.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server/src/main/resources/META-INF/product/opendj.properties -------------------------------------------------------------------------------- /opendj-server/src/site/xdoc/index.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/opendj-server/src/site/xdoc/index.xml.vm -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIdentityPlatform/OpenDJ/HEAD/pom.xml --------------------------------------------------------------------------------