opendj-sdk/opendj3-server-dev/pom.xml
@@ -28,11 +28,6 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <!-- This is Maven build file is just a hack in order to leverage Maven's site generation capabilities. It duplicates version information, and the Ant build is not split into phases: we just do it in one single blast during the compile phase --> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.forgerock.opendj</groupId> @@ -40,7 +35,7 @@ <version>3.0.0-SNAPSHOT</version> </parent> <artifactId>opendj3-server-dev</artifactId> <packaging>pom</packaging> <packaging>jar</packaging> <name>OpenDJ Directory Server</name> <description> OpenDJ is a new LDAPv3 compliant directory service, developed for the Java @@ -49,9 +44,9 @@ </description> <inceptionYear>2006</inceptionYear> <scm> <url>https://svn.forgerock.org/opendj/trunk/opends/</url> <connection>scm:svn:https://svn.forgerock.org/opendj/trunk/opends/</connection> <developerConnection>scm:svn:https://svn.forgerock.org/opendj/trunk/opends/</developerConnection> <url>https://svn.forgerock.org/opendj/branches/opendj3-server-dev/</url> <connection>scm:svn:https://svn.forgerock.org/opendj/branches/opendj3-server-dev/</connection> <developerConnection>scm:svn:https://svn.forgerock.org/opendj/branches/opendj3-server-dev/</developerConnection> <tag>HEAD</tag> </scm> <ciManagement> @@ -86,92 +81,1026 @@ <enabled>false</enabled> </releases> </repository> <repository> <id>oracle-repository</id> <name>Oracle Maven Repository</name> <url>http://download.oracle.com/maven</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <properties> <ant.home>ext/ant</ant.home> <BUILD_NUMBER>0</BUILD_NUMBER> <!-- General server-wide properties --> <docgen.dir>${project.build.directory}/docgen</docgen.dir> <jars.dir>${project.build.directory}/jars</jars.dir> <!-- Product information properties --> <shortProductName>OpenDJ</shortProductName> <lowerCaseProductName>opendj</lowerCaseProductName> <patchFixIds></patchFixIds> <isDebugBuild>false</isDebugBuild> <docHomepageUrl>http://opendj.forgerock.org/</docHomepageUrl> <docWikiUrl>http://opendj.forgerock.org/docs.html</docWikiUrl> <docGuideRefUrl>http://opendj.forgerock.org/doc/admin-guide/index.html</docGuideRefUrl> <docGuideAdminUrl>http://opendj.forgerock.org/doc/admin-guide/index.html</docGuideAdminUrl> <locales>ca_ES,es,de,fr,ja,ko,pl,zh_CN,zh_TW</locales> <!-- Dependencies version properties --> <project.version>3.0.0-SNAPSHOT</project.version> <i18n.version>1.4.2-SNAPSHOT</i18n.version> <forgerockBuildToolsVersion>1.0.2</forgerockBuildToolsVersion> <grizzlyFrameworkVersion>2.3.14</grizzlyFrameworkVersion> <slf4jVersion>1.7.5</slf4jVersion> <forgerockRestVersion>2.1.0-SNAPSHOT</forgerockRestVersion> <!-- Other properties --> <checkstyleHeaderLocation>org/forgerock/checkstyle/opendj-java-header</checkstyleHeaderLocation> </properties> <dependencies> <!-- ForgeRock libraries --> <dependency> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-rest2ldap-servlet</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.forgerock.commons</groupId> <artifactId>i18n-slf4j</artifactId> </dependency> <dependency> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-slf4j-adapter</artifactId> <version>${project.version}</version> <exclusions> <exclusion> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj3-server-dev</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-server3x-adapter</artifactId> <version>${project.version}</version> <exclusions> <exclusion> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-server</artifactId> </exclusion> <exclusion> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj3-server-dev</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-config</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-server</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-legacy</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-cli</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.forgerock</groupId> <artifactId>forgerock-build-tools</artifactId> <version>${forgerockBuildToolsVersion}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> </dependency> <!-- servlet and mail --> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1-b02</version> </dependency> <dependency> <groupId>org.glassfish.grizzly</groupId> <artifactId>grizzly-http-servlet</artifactId> <version>2.3.16</version> <exclusions> <exclusion> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.7</version> </dependency> <!-- Tests --> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.0.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>1.7.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-core</artifactId> <type>test-jar</type> <version>${project.version}</version> <scope>test</scope> </dependency> <!-- Databases --> <dependency> <groupId>com.sleepycat</groupId> <artifactId>je</artifactId> <version>5.0.104</version> </dependency> <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-persistit</artifactId> <version>3.3.1</version> </dependency> </dependencies> <build> <directory>build</directory> <resources> <!-- Main resources --> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <excludes> <exclude>java-stubs</exclude> </excludes> </resource> <!-- Property files used in test sources --> <resource> <directory>tests/unit-tests-testng/src/server</directory> <filtering>false</filtering> <includes> <include>**/*.properties</include> </includes> </resource> <!-- Images for quicksetup must be explicitely copied from sources --> <resource> <directory>src/quicksetup</directory> <filtering>false</filtering> <includes> <include>**/images/*.gif</include> <include>**/images/*.png</include> </includes> </resource> <!-- Images for guitools must be explicitely copied from sources --> <resource> <directory>src/guitools</directory> <filtering>false</filtering> <includes> <include>**/images/*.gif</include> <include>**/images/*.png</include> </includes> </resource> <!-- .plist files for macos must be filtered to include build properties --> <resource> <directory>resource/mac</directory> <filtering>true</filtering> <includes> <include>**/Info.plist</include> </includes> </resource> <!-- Generation of DynamicConstants class from build properties --> <resource> <directory>src/main/resources/java-stubs</directory> <filtering>true</filtering> <targetPath>${project.build.directory}/java-stubs</targetPath> </resource> </resources> <plugins> <!-- Clean classes generated outside the build directory --> <plugin> <artifactId>maven-antrun-plugin</artifactId> <inherited>false</inherited> <artifactId>maven-clean-plugin</artifactId> <configuration> <filesets> <fileset> <directory>${basedir}/src</directory> <includes> <include>admin/generated/**</include> <include>messages/generated/**</include> </includes> <followSymlinks>false</followSymlinks> </fileset> </filesets> </configuration> </plugin> <!-- Generate i18n messages --> <plugin> <groupId>org.forgerock.commons</groupId> <artifactId>i18n-maven-plugin</artifactId> <executions> <execution> <id>clean</id> <phase>clean</phase> <phase>generate-sources</phase> <goals> <goal>run</goal> <goal>generate-messages</goal> </goals> <configuration> <target> <delete dir="target" /> <ant target="clean" /> </target> <resourceDirectory>${basedir}/src/messages</resourceDirectory> <targetDirectory>${basedir}/src/messages/generated/</targetDirectory> <force>true</force> <messageFiles> <!-- Warning: messageFile must contains at least one "/" --> <messageFile>org/opends/messages/access_control.properties</messageFile> <messageFile>org/opends/messages/admin.properties</messageFile> <messageFile>org/opends/messages/admin_tool.properties</messageFile> <messageFile>org/opends/messages/backend.properties</messageFile> <messageFile>org/opends/messages/config.properties</messageFile> <messageFile>org/opends/messages/core.properties</messageFile> <messageFile>org/opends/messages/dsconfig.properties</messageFile> <messageFile>org/opends/messages/extension.properties</messageFile> <messageFile>org/opends/messages/jeb.properties</messageFile> <messageFile>org/opends/messages/logger.properties</messageFile> <messageFile>org/opends/messages/plugin.properties</messageFile> <messageFile>org/opends/messages/protocol.properties</messageFile> <messageFile>org/opends/messages/quickSetup.properties</messageFile> <messageFile>org/opends/messages/replication.properties</messageFile> <messageFile>org/opends/messages/runtime.properties</messageFile> <messageFile>org/opends/messages/schema.properties</messageFile> <messageFile>org/opends/messages/task.properties</messageFile> <messageFile>org/opends/messages/tool.properties</messageFile> <messageFile>org/opends/messages/utility.properties</messageFile> <messageFile>org/opends/messages/version.properties</messageFile> </messageFiles> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <!-- Copy messages properties files for inclusion in main jar --> <execution> <id>copy-l10n-messages</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.outputDirectory}/org/opends/messages</outputDirectory> <resources> <resource> <directory>src/messages/org/opends/messages</directory> <filtering>false</filtering> </resource> </resources> </configuration> </execution> <execution> <id>compile</id> <phase>compile</phase> <id>copy-l10n-config-messages</id> <phase>validate</phase> <goals> <goal>run</goal> <goal>copy-resources</goal> </goals> <configuration> <target> <!-- We need to significantly refactor build.xml in order to split this up any more --> <ant target="precommit" /> </target> <outputDirectory>${project.build.outputDirectory}/admin/messages/org/opends/server/admin/std/meta</outputDirectory> <resources> <resource> <directory>src/admin/messages</directory> <filtering>false</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.forgerock</groupId> <artifactId>manifest-classpath-maven-plugin</artifactId> <version>1.0.0-SNAPSHOT</version> <executions> <execution> <id>generate-bootstrap-manifest</id> <goals> <goal>generate</goal> </goals> <configuration> <classPathProperty>classpath.bootstrap</classPathProperty> <productJarName>${shortProductName}</productJarName> <supportedLocales>${locales}</supportedLocales> <excludes> <exclude>org.slf4j:slf4j-jdk14</exclude> </excludes> </configuration> </execution> <execution> <id>generate-docs</id> <phase>pre-site</phase> <id>generate-bootstrap-client-manifest</id> <goals> <goal>run</goal> <goal>generate</goal> </goals> <configuration> <target> <ant target="javadoc" /> <ant target="configguide" /> <ant target="generateLogReference" /> </target> <classPathProperty>classpath.bootstrap-client</classPathProperty> <productJarName>${shortProductName}</productJarName> <supportedLocales>${locales}</supportedLocales> <excludes> <exclude>org.forgerock.opendj:opendj-slf4j-adapter</exclude> </excludes> </configuration> </execution> </executions> </plugin> <!-- Generate configuration classes from XML definitions --> <!-- Leave default lifecycle phase once new config framework migration is done --> <plugin> <groupId>org.forgerock.opendj</groupId> <artifactId>opendj-config-maven-plugin</artifactId> <version>3.0.0-SNAPSHOT</version> <executions> <execution> <id>cp-generated-docs</id> <phase>site</phase> <id>generate-config</id> <phase>generate-sources</phase> <goals> <goal>run</goal> <goal>generate</goal> </goals> <configuration> <target> <copy todir="build/site/configref"> <fileset dir="build/docgen/configuration_guide/" /> </copy> <copy todir="build/site/javadoc"> <fileset dir="build/javadoc/" /> </copy> </target> <phase>none</phase> <packageName>org.forgerock.opendj.server.config</packageName> <isExtension>false</isExtension> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.8</version> <executions> <!-- Take into account several sources directories for the build --> <execution> <id>main-java-sources</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src/server</source> <source>src/quicksetup</source> <source>src/ads</source> <source>src/guitools</source> <source>src/messages/generated</source> <source>src/messages/src</source> <source>src/admin/generated</source> <source>src/build-tools</source> <source>src/dsml</source> <source>${project.build.directory}/java-stubs</source> </sources> </configuration> </execution> <!-- Take into account tests directory for the build --> <execution> <id>test-sources</id> <phase>generate-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>tests/unit-tests-testng/src/server</source> </sources> </configuration> </execution> <!-- Parse version to generate properties (major.version, minor.version, ...) --> <execution> <id>parse-version</id> <goals> <goal>parse-version</goal> </goals> </execution> </executions> </plugin> <!-- Retrieve the SVN revision number and the build timestamp --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>1.3</version> <executions> <execution> <id>generate-buildnumber</id> <goals> <goal>create</goal> </goals> <configuration> <useLastCommittedRevision>true</useLastCommittedRevision> <buildNumberPropertyName>buildRevision</buildNumberPropertyName> <revisionOnScmFailure>-1</revisionOnScmFailure> </configuration> </execution> <execution> <id>generate-timestamp</id> <goals> <goal>create</goal> </goals> <configuration> <format>{0,date,yyyyMMddHHmmss}</format> <items> <item>timestamp</item> </items> <buildNumberPropertyName>buildDateTime</buildNumberPropertyName> </configuration> </execution> </executions> </plugin> <!-- Create consolidated schema file for use in upgrade --> <plugin> <groupId>org.forgerock</groupId> <artifactId>concat-schema-maven-plugin</artifactId> <version>1.0.0-SNAPSHOT</version> <executions> <execution> <id>creates-base-schema-files</id> <goals> <goal>concat</goal> </goals> <configuration> <schemaDirectory>${basedir}/resource/schema</schemaDirectory> <outputDirectory>${project.build.directory}/upgrade</outputDirectory> <outputFile>schema.ldif.${buildRevision}</outputFile> </configuration> </execution> </executions> </plugin> <!-- Compile unit tests --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-testCompile</id> <goals> <goal>testCompile</goal> </goals> <configuration> <testSourceDirectory>tests/unit-tests-testng/src/server</testSourceDirectory> <showDeprecation>false</showDeprecation> <showWarnings>false</showWarnings> <testCompilerArgument>-nowarn</testCompilerArgument> <testExcludes> <testExclude>**/org/opends/server/snmp/**</testExclude> </testExcludes> </configuration> </execution> </executions> </plugin> <!-- Disable surefire plugin because all tests are run with failsafe plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <executions> <execution> <id>default-test</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <!-- Package boostrap jar - contains only a manifest with classpath for the server --> <execution> <id>build-bootstrap-jar</id> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>${jars.dir}</outputDirectory> <finalName>bootstrap</finalName> <includes> <include>nothing</include> </includes> <archive> <addMavenDescriptor>false</addMavenDescriptor> <manifestFile>${project.build.outputDirectory}/bootstrap/manifest-bootstrap</manifestFile> </archive> </configuration> </execution> <!-- Package boostrap-client jar - contains only a manifest with classpath for clients --> <execution> <id>build-bootstrap-client-jar</id> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>${jars.dir}</outputDirectory> <finalName>bootstrap-client</finalName> <includes> <include>nothing</include> </includes> <archive> <addMavenDescriptor>false</addMavenDescriptor> <manifestFile>${project.build.outputDirectory}/bootstrap/manifest-bootstrap-client</manifestFile> </archive> </configuration> </execution> <!-- Package build-tools jar --> <execution> <id>create-build-tools-jar</id> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>${jars.dir}</outputDirectory> <finalName>build-tools</finalName> <!-- TODO: Adds the resource/Messages.java.stub to build/build-tools/classes/org/opends/build/tools/resource --> <includes> <include>**/messages/Severity.class</include> <include>**/messages/Category.class</include> <include>**/messages/Message.class</include> <include>**/messages/MessagePropertyKey.class</include> <include>**/messages/MessageDescriptor.class</include> <include>**/server/types/PublicAPI.class</include> <include>**/server/types/StabilityLevel.class</include> <include>**/javax/jnlp/*</include> <include>**/netscape/ldap/*</include> <include>**/build/tools/*</include> </includes> </configuration> </execution> <!-- Package quicksetup jar --> <execution> <id>build-quicksetup-jar</id> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>${jars.dir}</outputDirectory> <finalName>quicksetup</finalName> <includes> <include>**/quicksetup/**</include> <include>**/org/opends/admin/ads/*</include> <include>**/org/opends/server/util/SetupUtils.class</include> <include>**/org/opends/server/util/CertificateManager.class</include> <include>**/org/opends/server/util/DynamicConstants.class</include> <include>**/org/opends/server/types/OperatingSystem.class</include> <include>**/org/opends/messages/Message.class</include> <include>**/org/opends/messages/MessageBuilder.class</include> <include>**/org/opends/messages/MessageDescriptor.class</include> <include>**/org/opends/messages/Severity.class</include> <include>**/org/opends/messages/Category.class</include> <include>**/org/opends/messages/QuickSetupMessages.class</include> <include>**/org/opends/server/types/OpenDsException.class</include> </includes> </configuration> </execution> <!-- Build localized jars (one per supported locale) --> <!-- (is there a way to avoid all these repeated executions ?) --> <execution> <id>build-caES-jar</id> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>${jars.dir}</outputDirectory> <finalName>${shortProductName}_ca_ES</finalName> <includes> <include>**/*_ca_ES.properties</include> </includes> <archive> <addMavenDescriptor>false</addMavenDescriptor> <index>true</index> </archive> </configuration> </execution> <execution> <id>build-de-jar</id> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>${jars.dir}</outputDirectory> <finalName>${shortProductName}_de</finalName> <includes> <include>**/*_de.properties</include> </includes> <archive> <addMavenDescriptor>false</addMavenDescriptor> <index>true</index> </archive> </configuration> </execution> <execution> <id>build-es-jar</id> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>${jars.dir}</outputDirectory> <finalName>${shortProductName}_es</finalName> <includes> <include>**/*_es.properties</include> </includes> <archive> <addMavenDescriptor>false</addMavenDescriptor> <index>true</index> </archive> </configuration> </execution> <execution> <id>build-fr-jar</id> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>${jars.dir}</outputDirectory> <finalName>${shortProductName}_fr</finalName> <includes> <include>**/*_fr.properties</include> </includes> <archive> <addMavenDescriptor>false</addMavenDescriptor> <index>true</index> </archive> </configuration> </execution> <execution> <id>build-ja-jar</id> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>${jars.dir}</outputDirectory> <finalName>${shortProductName}_ja</finalName> <includes> <include>**/*_ja.properties</include> </includes> <archive> <addMavenDescriptor>false</addMavenDescriptor> <index>true</index> </archive> </configuration> </execution> <execution> <id>build-ko-jar</id> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>${jars.dir}</outputDirectory> <finalName>${shortProductName}_ko</finalName> <includes> <include>**/*_ko.properties</include> </includes> <archive> <addMavenDescriptor>false</addMavenDescriptor> <index>true</index> </archive> </configuration> </execution> <execution> <id>build-pl-jar</id> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>${jars.dir}</outputDirectory> <finalName>${shortProductName}_pl</finalName> <includes> <include>**/*_pl.properties</include> </includes> <archive> <addMavenDescriptor>false</addMavenDescriptor> <index>true</index> </archive> </configuration> </execution> <execution> <id>build-zh-CN-jar</id> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>${jars.dir}</outputDirectory> <finalName>${shortProductName}_zh_CN</finalName> <includes> <include>**/*_zh_CN.properties</include> </includes> <archive> <addMavenDescriptor>false</addMavenDescriptor> <index>true</index> </archive> </configuration> </execution> <execution> <id>build-zh-TW-jar</id> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>${jars.dir}</outputDirectory> <finalName>${shortProductName}_zh_TW</finalName> <includes> <include>**/*_zh_TW.properties</include> </includes> <archive> <addMavenDescriptor>false</addMavenDescriptor> <index>true</index> </archive> </configuration> </execution> <!-- Main jar --> <execution> <id>default-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>${jars.dir}</outputDirectory> <finalName>${shortProductName}</finalName> <excludes> <exclude>*.app/**</exclude> <exclude>java-stubs/**</exclude> <exclude>bootstrap/**</exclude> <exclude>javax/jnlp/**</exclude> <exclude>netscape/**</exclude> <exclude>META-INF/**</exclude> <exclude>org/opends/dsml/**</exclude> <exclude>**/*_ca_ES.properties</exclude> <exclude>**/*_de.properties</exclude> <exclude>**/*_es.properties</exclude> <exclude>**/*_fr.properties</exclude> <exclude>**/*_ja.properties</exclude> <exclude>**/*_ko.properties</exclude> <exclude>**/*_pl.properties</exclude> <exclude>**/*_zh_CN.properties</exclude> <exclude>**/*_zh_TW.properties</exclude> </excludes> <archive> <addMavenDescriptor>false</addMavenDescriptor> <index>true</index> </archive> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <!-- Package the example plugin in a zip --> <execution> <id>build-example-package</id> <phase>prepare-package</phase> <goals> <goal>single</goal> </goals> <configuration> <finalName>example-plugin</finalName> <addMavenDescriptor>false</addMavenDescriptor> <appendAssemblyId>false</appendAssemblyId> <attach>false</attach> <descriptors> <descriptor>src/main/assembly/example-plugin-assembly.xml</descriptor> </descriptors> <formats> <format>zip</format> </formats> </configuration> </execution> <!-- Creates the archive folder --> <execution> <id>build-opendj-archive</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <finalName>${lowerCaseProductName}</finalName> <outputDirectory>${project.build.directory}/package</outputDirectory> <appendAssemblyId>false</appendAssemblyId> <attach>false</attach> <descriptors> <descriptor>src/main/assembly/opendj-archive-assembly.xml</descriptor> </descriptors> <formats> <format>dir</format> </formats> <archive> <manifestFile>${project.build.outputDirectory}/bootstrap/manifest-bootstrap</manifestFile> </archive> </configuration> </execution> <!-- Package DSML war --> <execution> <id>build-dsml-war</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <finalName>${shortProductName}-${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}-DSML</finalName> <outputDirectory>${project.build.directory}/package</outputDirectory> <appendAssemblyId>false</appendAssemblyId> <addMavenDescriptor>false</addMavenDescriptor> <descriptors> <descriptor>src/main/assembly/dsml-war-assembly.xml</descriptor> </descriptors> <formats> <format>war</format> </formats> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <!-- Temporary solution for configuration classes until migration to new config framework --> <id>generate-config</id> <phase>generate-sources</phase> <configuration> <target> <ant antfile="${basedir}/build.xml"> <target name="generateadmin" /> </ant> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> <!-- Generate final zip and attach artefact --> <execution> <id>attach-artifact</id> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <zip destfile="${project.build.directory}/package/${shortProductName}-${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.zip" basedir="${project.build.directory}/package/" includes="${lowerCaseProductName}/**"> <zipfileset dir="${project.build.directory}/package/${lowerCaseProductName}" includes="**/*" excludes="bin/*,template/**/*,lib/_client-script.sh,lib/_script-util.sh,lib/_server-script.sh,lib/_mixed-script.sh,setup,uninstall,upgrade,QuickSetup.app/Contents/MacOS/JavaApplicationStub,Uninstall.app/Contents/MacOS/JavaApplicationStub,bin/ControlPanel.app/Contents/MacOS/JavaApplicationStub" filemode="644" dirmode="755" prefix="opendj" /> <zipfileset dir="${project.build.directory}/package/${lowerCaseProductName}" includes="lib/_client-script.sh,lib/_script-util.sh,lib/_server-script.sh,lib/_mixed-script.sh" filemode="755" dirmode="755" prefix="opendj" /> <zipfileset dir="${project.build.directory}/package/${lowerCaseProductName}" includes="bin/*" filemode="755" dirmode="755" prefix="opendj" /> <zipfileset dir="${project.build.directory}/package/${lowerCaseProductName}" includes="setup,uninstall,upgrade,QuickSetup.app/Contents/MacOS/JavaApplicationStub,Uninstall.app/Contents/MacOS/JavaApplicationStub,bin/ControlPanel.app/Contents/MacOS/JavaApplicationStub" filemode="755" dirmode="755" prefix="opendj" /> <zipfileset dir="${project.build.directory}/package/${lowerCaseProductName}" includes="template/**/*" filemode="444" dirmode="744" prefix="opendj" /> </zip> <attachartifact file="${project.build.directory}/package/${shortProductName}-${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.zip" type="zip" /> </target> </configuration> </execution> </executions> </plugin> <!-- Generates log references for documentation --> <plugin> <groupId>org.forgerock</groupId> <artifactId>genlogref-documentation-maven-plugin</artifactId> <version>1.0.0-SNAPSHOT</version> <executions> <execution> <goals> <goal>generate-xml-messages-doc</goal> </goals> <configuration> <messagesDirectory>${basedir}/src/messages/org/opends/messages</messagesDirectory> <outputDirectory>${project.build.directory}/docgen/logref</outputDirectory> <logMessageReferenceFilePath>${basedir}/resource/log-message-reference.xml</logMessageReferenceFilePath> <messageFileNames> <!-- for xxx_yyy.properties generates a log-ref-xxx-yyy.xml file --> <messageFileName>admin</messageFileName> <messageFileName>backend</messageFileName> <messageFileName>config</messageFileName> <messageFileName>core</messageFileName> <messageFileName>dsconfig</messageFileName> <messageFileName>extension</messageFileName> <messageFileName>jeb</messageFileName> <messageFileName>log</messageFileName> <messageFileName>plugin</messageFileName> <messageFileName>protocol</messageFileName> <messageFileName>replication</messageFileName> <messageFileName>schema</messageFileName> <messageFileName>task</messageFileName> <messageFileName>tool</messageFileName> <messageFileName>utility</messageFileName> <!-- Ignore following message files as we document only serious errors. --> <!-- <messageFileName>access_control</messageFileName> --> <!-- <messageFileName>admin_tool</messageFileName> --> <!-- <messageFileName>quicksetup.properties</messageFileName> --> <!-- <messageFileName>runtime_information.properties</messageFileName> --> <!-- <messageFileName>version.properties</messageFileName> --> </messageFileNames> </configuration> </execution> </executions> </plugin> <!-- Generate documentation (guide) --> <plugin> <groupId>org.forgerock.commons</groupId> <artifactId>forgerock-doc-maven-plugin</artifactId> <version>${frDocPluginVersion}</version> <inherited>false</inherited> <configuration> <projectName>OpenDJ</projectName> <projectName>${shortProductName}</projectName> <projectVersion>${docTargetVersion}</projectVersion> <releaseVersion>${docTargetVersion}</releaseVersion> <googleAnalyticsId>${gaId}</googleAnalyticsId> <latestJson>http://docs.forgerock.org/latest.json</latestJson> <docbkxSourceDirectory>${basedir}/src/main/docbkx</docbkxSourceDirectory> </configuration> <executions> <execution> @@ -205,6 +1134,7 @@ </executions> </plugin> <!-- Build javadoc --> <plugin> <groupId>org.forgerock.maven.plugins</groupId> <artifactId>javadoc-updater-maven-plugin</artifactId> @@ -216,81 +1146,161 @@ <goal>fixjavadoc</goal> </goals> <configuration> <directory>build/site/javadoc</directory> <directory>${project.build.directory}/site/javadoc</directory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.7</version> <executions> <execution> <id>parse-version</id> <goals> <goal>parse-version</goal> </goals> </execution> <execution> <id>attach-artifacts</id> <phase>package</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>build/package/OpenDJ-${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.zip</file> <type>zip</type> </artifact> <artifact> <file>build/package/OpenDJ-${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}-DSML.war</file> <type>war</type> </artifact> <artifact> <file>build/package/OpenDJ-${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}/lib/OpenDJ.jar</file> <type>jar</type> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> <!-- Release project --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <!-- Required for release:perform: the parent pom specifies a value for "arguments" in the plugin configuration. This prevents command line setting of the option. --> for "arguments" in the plugin configuration. This prevents command line setting of the option. --> <arguments>-Penforce -Dopendmk.lib.dir=${opendmk.lib.dir}</arguments> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>tests-only</id> <build> <plugins> <!-- Generate DSML code from XML files --> <plugin> <artifactId>maven-antrun-plugin</artifactId> <inherited>false</inherited> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxb2-maven-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>compile</id> <phase>compile</phase> <id>prepare-dsml-library</id> <goals> <goal>run</goal> <goal>xjc</goal> </goals> <configuration> <target> <!-- We need to significantly refactor build.xml in order to split this up any more --> <ant target="test" /> </target> <outputDirectory>${project.build.directory}/dsml/gen</outputDirectory> <schemaDirectory>${basedir}/resource/dsml/schema</schemaDirectory> <schemaFiles>DSMLv2.xsd</schemaFiles> <packageName>org.opends.dsml.protocol</packageName> <bindingDirectory>${basedir}/resource/dsml/schema</bindingDirectory> <bindingFiles>bindings.xjb</bindingFiles> <target>2.1</target> <npa>true</npa> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <!-- Profile to run precommit tasks: checkstyle, copyright (TODO), SVN eol check (TODO), unit-tests Tests are not run by default due to running time (average of 8-10 minutes). --> <profile> <id>precommit</id> <build> <plugins> <!-- Enforce Checkstyle --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.14</version> <executions> <!-- Disable default from parent --> <execution> <id>check-src-and-tests</id> <phase>none</phase> <goals> <goal>checkstyle</goal> </goals> </execution> <execution> <id>check-src-and-tests-alternative</id> <configuration> <excludes>org/opends/messages/**,**/server/admin/std/**,**/config/meta/**,**/config/client/**,**/config/server/**,**/dsml/protocol/**,javax/jnlp/**,netscape/ldap/**</excludes> <configLocation>${project.build.outputDirectory}/org/forgerock/checkstyle/opends-checkstyle.xml</configLocation> <headerLocation>${project.build.outputDirectory}/org/forgerock/checkstyle/opendj.sourceheader</headerLocation> <suppressionsLocation>${project.build.outputDirectory}/org/forgerock/checkstyle/unit-test-suppressions.xml</suppressionsLocation> <includeTestSourceDirectory>true</includeTestSourceDirectory> <includeResources>false</includeResources> <!-- Only output errors if we're not expecting any --> <consoleOutput>${checkstyleFailOnError}</consoleOutput> <failsOnError>${checkstyleFailOnError}</failsOnError> </configuration> <phase>process-test-classes</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <!-- Run unit/integration tests. A lot of existing tests requires a running server, which is why the tests are run using failsafe instead of surefire. It should be possible in the future to separate tests into unit (no server) and integration (with server), by using respectively surefire and failsafe plugin to run them, but it will require identifying them. We could use an "unit" marker in TestNG groups to do so. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <testSourceDirectory>tests/unit-tests-testng/src/server</testSourceDirectory> <excludes> <exclude>org/opends/server/snmp/**</exclude> <exclude>org/opends/quicksetup/**</exclude> </excludes> <includes> <include>**/Test*.java</include> <include>**/*Test.java</include> <include>**/*Tests.java</include> <include>**/*TestCase.java</include> <include>**/*TestCases.java</include> </includes> <properties> <property> <name>usedefaultlisteners</name> <value>false</value> </property> <property> <name>listener</name> <value>org.opends.server.TestListener</value> </property> <property> <name>excludegroups</name> <value>slow</value> </property> <property> <name>configfailurepolicy</name> <value>skip</value> </property> </properties> <systemPropertyVariables> <org.opends.server.BuildRoot>${basedir}</org.opends.server.BuildRoot> <org.opends.server.BuildDir>${project.build.directory}</org.opends.server.BuildDir> <org.opends.test.replicationDbImpl>LOG</org.opends.test.replicationDbImpl> <!-- <jvmarg value="-Dorg.opends.server.snmp.opendmk=${opendmk.lib.dir}"/> --> <org.opends.server.CleanupDirectories>true</org.opends.server.CleanupDirectories> <org.opends.test.suppressOutput>true</org.opends.test.suppressOutput> <org.opends.test.pauseOnFailure>false</org.opends.test.pauseOnFailure> <org.opends.test.copyClassesToTestPackage>false</org.opends.test.copyClassesToTestPackage> </systemPropertyVariables> <argLine>-server -Xms1024M -Xmx1024M</argLine> </configuration> </execution> </executions> @@ -298,5 +1308,189 @@ </plugins> </build> </profile> <!-- Profile to build SNMP extension. This profile is only actived when command line contains the 'opendmk.lib.dir' property that must point to the directory where OpenDMK jars are located. Example: mvn install -Dopendmk.lib.dir=/path/to/opendmk/jars --> <profile> <id>snmp</id> <activation> <property> <name>opendmk.lib.dir</name> </property> </activation> <properties> <snmp.gen.dir>${basedir}/src/snmp/generated</snmp.gen.dir> <snmp.mib.dir>${basedir}/src/snmp/resource/mib</snmp.mib.dir> </properties> <dependencies> <dependency> <groupId>opendmk</groupId> <artifactId>jdmkrt</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${opendmk.lib.dir}/jdmkrt.jar</systemPath> </dependency> <dependency> <groupId>opendmk</groupId> <artifactId>jdmktk</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${opendmk.lib.dir}/jdmktk.jar</systemPath> </dependency> </dependencies> <build> <resources> <resource> <directory>src/snmp/resource</directory> </resource> </resources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.7</version> <executions> <!-- Add snmp source directory and snmp generated directory as sources --> <execution> <id>snmp-java-sources</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src/snmp/src</source> <source>src/snmp/generated</source> <source>tests/unit-tests-testng/src/server/snmp</source> </sources> </configuration> </execution> </executions> </plugin> <!-- Cleans SNMP directory --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>createMibDir</id> <phase>initialize</phase> <configuration> <target> <delete dir="${snmp.gen.dir}/org/opends/server/snmp" /> <mkdir dir="${snmp.gen.dir}/org/opends/server/snmp" /> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <!-- MIB generation --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.3.2</version> <executions> <execution> <id>mib-generation</id> <phase>generate-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>java</executable> <classpathScope>compile</classpathScope> <arguments> <argument>-classpath</argument> <classpath /> <argument>com.sun.jdmk.tools.MibGen</argument> <argument>-X:use-display-hint</argument> <argument>-d</argument> <argument>${snmp.gen.dir}/org/opends/server/snmp</argument> <argument>-mc</argument> <argument>-desc</argument> <argument>-tp</argument> <argument>org.opends.server.snmp</argument> <argument>${snmp.mib.dir}/rfc2605.txt</argument> <argument>${snmp.mib.dir}/mib_core.txt</argument> <argument>${snmp.mib.dir}/rfc2021.txt</argument> <argument>${snmp.mib.dir}/rfc2788.txt</argument> </arguments> </configuration> </execution> </executions> </plugin> <!-- Creates snmp-mib2605 jar file --> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>create-snmp-jar</id> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>${jars.dir}</outputDirectory> <finalName>snmp-mib2605</finalName> <includes> <include>org/opends/server/snmp/**</include> <include>admin/extension.manifest</include> </includes> <archive> <index>true</index> <addMavenDescriptor>false</addMavenDescriptor> <manifestEntries> <Extension-Name>snmp-mib2605</Extension-Name> <Implementation-Version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}"</Implementation-Version> <Revision-Number>${buildRevision}</Revision-Number> </manifestEntries> </archive> </configuration> </execution> </executions> </plugin> <!-- Package the final zip --> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>build-opendj-archive</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/package</outputDirectory> <finalName>${shortProductName}-${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}</finalName> <descriptors> <descriptor>src/main/assembly/opendj-snmp-archive-assembly.xml</descriptor> </descriptors> <appendAssemblyId>false</appendAssemblyId> <formats> <format>zip</format> </formats> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project> opendj-sdk/opendj3-server-dev/resource/mac/ControlPanel.app/Contents/Info.plist
@@ -7,9 +7,9 @@ <key>CFBundleIdentifier</key> <string>org.opends.guitools.controlpanel.ControlPanelLauncher</string> <key>CFBundleShortVersionString</key> <string>@version@</string> <string>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}</string> <key>CFBundleVersion</key> <string>@revision@</string> <string>${buildRevision}</string> <key>CFBundleAllowMixedLocalizations</key> <string>true</string> <key>CFBundleExecutable</key> opendj-sdk/opendj3-server-dev/resource/mac/QuickSetup.app/Contents/Info.plist
@@ -7,9 +7,9 @@ <key>CFBundleIdentifier</key> <string>org.opends.quicksetup.installer.SetupLauncher</string> <key>CFBundleShortVersionString</key> <string>@version@</string> <string>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}</string> <key>CFBundleVersion</key> <string>@revision@</string> <string>${buildRevision}</string> <key>CFBundleAllowMixedLocalizations</key> <string>true</string> <key>CFBundleExecutable</key> opendj-sdk/opendj3-server-dev/resource/mac/Uninstall.app/Contents/Info.plist
@@ -7,9 +7,9 @@ <key>CFBundleIdentifier</key> <string>org.opends.guitools.uninstaller.UninstallLauncher</string> <key>CFBundleShortVersionString</key> <string>@version@</string> <string>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}</string> <key>CFBundleVersion</key> <string>@revision@</string> <string>${buildRevision}</string> <key>CFBundleAllowMixedLocalizations</key> <string>true</string> <key>CFBundleExecutable</key> opendj-sdk/opendj3-server-dev/src/build-tools/org/opends/build/tools/CheckPrecommit.java
File was deleted opendj-sdk/opendj3-server-dev/src/build-tools/org/opends/build/tools/ConcatSchema.java
File was deleted opendj-sdk/opendj3-server-dev/src/build-tools/org/opends/build/tools/CoverageDiff.java
File was deleted opendj-sdk/opendj3-server-dev/src/build-tools/org/opends/build/tools/CreateVersionString.java
File was deleted opendj-sdk/opendj3-server-dev/src/build-tools/org/opends/build/tools/GenerateMessageFile.java
File was deleted opendj-sdk/opendj3-server-dev/src/build-tools/org/opends/build/tools/GetSubversionRevision.java
File was deleted opendj-sdk/opendj3-server-dev/src/build-tools/org/opends/build/tools/GetSubversionUrlRepo.java
File was deleted opendj-sdk/opendj3-server-dev/src/build-tools/org/opends/build/tools/MessagePropertyKey.java
File was deleted opendj-sdk/opendj3-server-dev/src/build-tools/org/opends/build/tools/PrepTestNG.java
File was deleted opendj-sdk/opendj3-server-dev/src/build-tools/org/opends/build/tools/ProcessFilesForPackages.java
File was deleted opendj-sdk/opendj3-server-dev/src/build-tools/org/opends/build/tools/Utilities.java
File was deleted opendj-sdk/opendj3-server-dev/src/build-tools/org/opends/build/tools/ValidJavaVersion.java
File was deleted opendj-sdk/opendj3-server-dev/src/build-tools/org/opends/build/tools/package-info.java
File was deleted opendj-sdk/opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/BinaryAttributeEditorPanel.java
@@ -421,7 +421,7 @@ } else { errors.add(ERR_CTRL_PANEL_ERROR_DECODING_BASE_64.get(t)); errors.add(ERR_CTRL_PANEL_ERROR_DECODING_BASE64.get(t)); } displayErrorDialog(errors); } @@ -531,7 +531,7 @@ gbc.insets.left = 0; gbc.gridwidth = 3; useBase64 = Utilities.createRadioButton( INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE_64.get()); INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE64.get()); useBase64.setFont(ColorAndFontConstants.primaryFont); add(useBase64, gbc); @@ -621,7 +621,7 @@ else { base64.setText( INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE_64.get().toString()); INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE64.get().toString()); } } opendj-sdk/opendj3-server-dev/src/main/assembly/dsml-war-assembly.xml
New file @@ -0,0 +1,83 @@ <!-- ! CDDL HEADER START ! ! The contents of this file are subject to the terms of the ! Common Development and Distribution License, Version 1.0 only ! (the "License"). You may not use this file except in compliance ! with the License. ! ! You can obtain a copy of the license at ! trunk/opendj3/legal-notices/CDDLv1_0.txt ! or http://forgerock.org/license/CDDLv1.0.html. ! See the License for the specific language governing permissions ! and limitations under the License. ! ! When distributing Covered Code, include this CDDL HEADER in each ! file and include the License file at ! trunk/opendj3/legal-notices/CDDLv1_0.txt. If applicable, ! add the following below this CDDL HEADER, with the fields enclosed ! by brackets "[]" replaced with your own identifying information: ! Portions Copyright [yyyy] [name of copyright owner] ! ! CDDL HEADER END ! ! Copyright 2015 ForgeRock AS. ! --> <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> <id>dsml-war</id> <baseDirectory></baseDirectory> <!-- Put un-versioned dependencies (jars) into lib directory --> <dependencySets> <dependencySet> <outputDirectory>WEB-INF/lib</outputDirectory> <unpack>false</unpack> <scope>runtime</scope> <outputFileNameMapping>${artifact.artifactId}.${artifact.extension}</outputFileNameMapping> <includes> <include>org.forgerock.commons:forgerock-util</include> <include>org.forgerock.commons:i18n-core</include> <include>org.forgerock.commons:i18n-slf4j</include> <include>org.slf4j:slf4j-api</include> <include>org.forgerock.opendj:opendj-cli</include> <include>org.forgerock.opendj:opendj-config</include> <include>org.forgerock.opendj:opendj-core</include> </includes> </dependencySet> </dependencySets> <fileSets> <fileSet> <directory>${jars.dir}/</directory> <outputDirectory>WEB-INF/lib</outputDirectory> <includes> <include>${shortProductName}_*.jar</include> </includes> </fileSet> <fileSet> <directory>${project.build.outputDirectory}/org/opends/dsml/protocol</directory> <outputDirectory>WEB-INF/classes/org/opends/dsml/protocol</outputDirectory> </fileSet> <fileSet> <directory>${basedir}/resource/dsml/webapp</directory> <outputDirectory>WEB-INF</outputDirectory> </fileSet> </fileSets> <files> <!-- Main jar (OpenDJ) --> <file> <source>${jars.dir}/${shortProductName}.jar</source> <outputDirectory>lib</outputDirectory> </file> <!-- DSMLv2.xsd --> <file> <source>${basedir}/resource/dsml/schema/DSMLv2.xsd</source> <outputDirectory>WEB-INF/classes/resources</outputDirectory> </file> </files> </assembly> opendj-sdk/opendj3-server-dev/src/main/assembly/example-plugin-assembly.xml
New file @@ -0,0 +1,96 @@ <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> <id>zip-generation</id> <formats> <format>zip</format> </formats> <fileSets> <!-- Adds xml files to src target directory --> <fileSet> <directory>${basedir}/src/admin/defn</directory> <outputDirectory>src</outputDirectory> <includes> <include>**/*.xml</include> </includes> </fileSet> <!-- Adds resource/admin content but example-plugin folder to resource/admin target directory --> <fileSet> <directory>${basedir}/resource/admin</directory> <outputDirectory>resource/admin</outputDirectory> <excludes> <exclude>example-plugin/**</exclude> </excludes> </fileSet> <!-- Adds files to root target directory --> <fileSet> <directory>${basedir}/resource/admin/example-plugin</directory> <outputDirectory></outputDirectory> <includes> <include>build.xml</include> <include>README</include> </includes> </fileSet> <!-- Adds files to src/com/example/opends target directory --> <fileSet> <directory>${basedir}/resource/admin/example-plugin</directory> <outputDirectory>src/com/example/opends</outputDirectory> <includes> <include>*.java</include> <include>*.xml</include> </includes> <excludes><exclude>build.xml</exclude></excludes> </fileSet> <!-- Adds messages to resource/messages/com/example/opends/messages target directory --> <fileSet> <directory>${basedir}/resource/admin/example-plugin</directory> <outputDirectory>resource/messages/com/example/opends/messages</outputDirectory> <includes> <include>example_plugin*.properties</include> </includes> <excludes><exclude>build.xml</exclude></excludes> </fileSet> <!-- Creates template/ children directories --> <fileSet> <directory>.</directory> <outputDirectory>ext</outputDirectory> <excludes> <exclude>*/**</exclude> </excludes> </fileSet> <fileSet> <directory>.</directory> <outputDirectory>src-generated</outputDirectory> <excludes> <exclude>*/**</exclude> </excludes> </fileSet> </fileSets> <files> <!-- Adds schema file to resource/schema target directory --> <file> <source>${basedir}/resource/admin/example-plugin/99-example-plugin.ldif</source> <outputDirectory>resource/schema</outputDirectory> </file> <!-- Adds config file to resource/schema target directory --> <file> <source>${basedir}/resource/admin/example-plugin/example-plugin.ldif</source> <outputDirectory>resource/config</outputDirectory> </file> <!-- Adds jar file to the lib target directory --> <!-- TODO: activate once build-tools directory created --> <!-- <file> --> <!-- <source>${basedir}/build/build-tools/build-tools.jar</source> --> <!-- <outputDirectory>lib</outputDirectory> --> <!-- </file> --> </files> </assembly> opendj-sdk/opendj3-server-dev/src/main/assembly/opendj-archive-assembly.xml
New file @@ -0,0 +1,35 @@ <!-- ! CDDL HEADER START ! ! The contents of this file are subject to the terms of the ! Common Development and Distribution License, Version 1.0 only ! (the "License"). You may not use this file except in compliance ! with the License. ! ! You can obtain a copy of the license at ! trunk/opendj3/legal-notices/CDDLv1_0.txt ! or http://forgerock.org/license/CDDLv1.0.html. ! See the License for the specific language governing permissions ! and limitations under the License. ! ! When distributing Covered Code, include this CDDL HEADER in each ! file and include the License file at ! trunk/opendj3/legal-notices/CDDLv1_0.txt. If applicable, ! add the following below this CDDL HEADER, with the fields enclosed ! by brackets "[]" replaced with your own identifying information: ! Portions Copyright [yyyy] [name of copyright owner] ! ! CDDL HEADER END ! ! Copyright 2015 ForgeRock AS. ! --> <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> <id>opendj-dir-generation</id> <includeBaseDirectory>false</includeBaseDirectory> <componentDescriptors> <componentDescriptor>src/main/assembly/opendj-archive-component.xml</componentDescriptor> </componentDescriptors> </assembly> opendj-sdk/opendj3-server-dev/src/main/assembly/opendj-archive-component.xml
New file @@ -0,0 +1,306 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- ! CDDL HEADER START ! ! The contents of this file are subject to the terms of the ! Common Development and Distribution License, Version 1.0 only ! (the "License"). You may not use this file except in compliance ! with the License. ! ! You can obtain a copy of the license at ! trunk/opendj3/legal-notices/CDDLv1_0.txt ! or http://forgerock.org/license/CDDLv1.0.html. ! See the License for the specific language governing permissions ! and limitations under the License. ! ! When distributing Covered Code, include this CDDL HEADER in each ! file and include the License file at ! trunk/opendj3/legal-notices/CDDLv1_0.txt. If applicable, ! add the following below this CDDL HEADER, with the fields enclosed ! by brackets "[]" replaced with your own identifying information: ! Portions Copyright [yyyy] [name of copyright owner] ! ! CDDL HEADER END ! ! Copyright 2015 ForgeRock AS. ! --> <!-- OpenDJ final archive content descriptor --> <component> <!-- Put un-versioned dependencies (jars) into lib directory --> <dependencySets> <dependencySet> <outputDirectory>lib</outputDirectory> <unpack>false</unpack> <scope>runtime</scope> <outputFileNameMapping>${artifact.artifactId}.${artifact.extension}</outputFileNameMapping> <excludes> <exclude>org.forgerock.opendj:opendj3-server-dev</exclude> <exclude>javax.activation:activation</exclude> <exclude>org.forgerock.commons:json-resource-servlet:war</exclude> </excludes> </dependencySet> </dependencySets> <fileSets> <!-- Creates bat/ directory --> <fileSet> <directory>${basedir}/resource/bin</directory> <outputDirectory>bat</outputDirectory> <includes> <include>*.bat</include> </includes> <excludes> <exclude>_*.bat</exclude> <exclude>setcp.bat</exclude> </excludes> <fileMode>755</fileMode> <lineEnding>windows</lineEnding> </fileSet> <!-- Creates bin/ directory --> <fileSet> <directory>${basedir}/resource/bin</directory> <outputDirectory>bin</outputDirectory> <excludes> <exclude>_*.sh</exclude> <exclude>*.bat</exclude> </excludes> <fileMode>755</fileMode> <directoryMode>755</directoryMode> </fileSet> <!-- Creates legal-notices/ directory --> <fileSet> <directory>${basedir}/resource/legal-notices</directory> <outputDirectory>legal-notices</outputDirectory> </fileSet> <!-- Adds scripts in lib/ directory --> <fileSet> <directory>${basedir}/resource/bin</directory> <outputDirectory>lib</outputDirectory> <includes> <include>_*.sh</include> <include>_*.bat</include> <include>setcp.bat</include> </includes> <fileMode>755</fileMode> <directoryMode>755</directoryMode> </fileSet> <!-- Adds resources at the archive root --> <fileSet> <directory>${basedir}/resource</directory> <outputDirectory></outputDirectory> <includes> <include>setup*</include> <include>*install*</include> <include>upgrade*</include> <include>README</include> </includes> <fileMode>755</fileMode> <directoryMode>755</directoryMode> </fileSet> <!-- Adds Mac executables at the archive root --> <fileSet> <directory>${basedir}/resource/mac</directory> <outputDirectory></outputDirectory> <includes> <include>QuickSetup.app/*/**</include> <include>Uninstall.app/*/**</include> </includes> <excludes> <exclude>*/**/Info.plist</exclude> </excludes> <fileMode>755</fileMode> <directoryMode>755</directoryMode> </fileSet> <!-- Adds Mac Info.plist files at the archive root --> <fileSet> <directory>${project.build.outputDirectory}</directory> <outputDirectory></outputDirectory> <includes> <include>QuickSetup.app/*/**</include> <include>Uninstall.app/*/**</include> </includes> <fileMode>755</fileMode> <directoryMode>755</directoryMode> </fileSet> <!-- Adds Mac control-panel in the bin/ directory --> <fileSet> <directory>${basedir}/resource/mac</directory> <outputDirectory>bin</outputDirectory> <includes> <include>ControlPanel.app/*/**</include> <include>${project.build.outputDirectory}/ControlPanel.app/*/**</include> </includes> <excludes> <exclude>*/**/Info.plist</exclude> </excludes> <fileMode>755</fileMode> <directoryMode>755</directoryMode> </fileSet> <!-- Adds Mac control-panel Info.plist in the bin/ directory --> <fileSet> <directory>${project.build.outputDirectory}</directory> <outputDirectory>bin</outputDirectory> <includes> <include>ControlPanel.app/*/**</include> </includes> <fileMode>755</fileMode> <directoryMode>755</directoryMode> </fileSet> <!-- Adds messages template resources --> <fileSet> <directory>${basedir}/resource/messages</directory> <outputDirectory>template/config/messages</outputDirectory> <includes> <include>*.template</include> </includes> </fileSet> <!-- Adds schema template resources --> <fileSet> <directory>${basedir}/resource/schema</directory> <outputDirectory>template/config/schema</outputDirectory> <includes> <include>*.ldif</include> </includes> </fileSet> <!-- Adds configuration template resources --> <fileSet> <directory>${basedir}/resource/config</directory> <outputDirectory>template/config</outputDirectory> <includes> <include>*.*</include> </includes> </fileSet> <!-- Adds MakeLDIF configuration template resources --> <fileSet> <directory>${basedir}/resource/MakeLDIF</directory> <outputDirectory>template/config/MakeLDIF</outputDirectory> <includes> <include>*</include> </includes> </fileSet> <!-- Creates template/ children directories --> <fileSet> <directory>.</directory> <outputDirectory>template/bak</outputDirectory> <excludes> <exclude>*/**</exclude> </excludes> </fileSet> <fileSet> <directory>.</directory> <outputDirectory>template/changelogDb</outputDirectory> <excludes> <exclude>*/**</exclude> </excludes> </fileSet> <fileSet> <directory>.</directory> <outputDirectory>template/classes</outputDirectory> <excludes> <exclude>*/**</exclude> </excludes> </fileSet> <fileSet> <directory>.</directory> <outputDirectory>template/db</outputDirectory> <excludes> <exclude>*/**</exclude> </excludes> </fileSet> <fileSet> <directory>.</directory> <outputDirectory>template/import-tmp</outputDirectory> <excludes> <exclude>*/**</exclude> </excludes> </fileSet> <fileSet> <directory>.</directory> <outputDirectory>template/ldif</outputDirectory> <excludes> <exclude>*/**</exclude> </excludes> </fileSet> <fileSet> <directory>.</directory> <outputDirectory>template/locks</outputDirectory> <excludes> <exclude>*/**</exclude> </excludes> </fileSet> <fileSet> <directory>.</directory> <outputDirectory>template/logs</outputDirectory> <excludes> <exclude>*/**</exclude> </excludes> </fileSet> <fileSet> <directory>${jars.dir}</directory> <outputDirectory>lib</outputDirectory> <includes> <include>${shortProductName}_*.jar</include> </includes> </fileSet> <fileSet> <directory>${jars.dir}</directory> <outputDirectory>lib</outputDirectory> <includes> <include>bootstrap*.jar</include> </includes> </fileSet> <fileSet> <directory>.</directory> <outputDirectory>lib/extensions</outputDirectory> <excludes> <exclude>*/**</exclude> </excludes> </fileSet> </fileSets> <files> <!-- Adds logo png to root directory --> <file> <source>${basedir}/resource/images/opendj_logo.png</source> <outputDirectory></outputDirectory> </file> <!-- Main jar (OpenDJ) --> <file> <source>${jars.dir}/${shortProductName}.jar</source> <outputDirectory>lib</outputDirectory> </file> <!-- quicksetup jar --> <file> <source>${jars.dir}/quicksetup.jar</source> <outputDirectory>lib</outputDirectory> </file> <!-- Adds buildinfo to configuration template/config --> <file> <source>${project.build.outputDirectory}/META-INF/product/buildinfo</source> <outputDirectory>template/config</outputDirectory> </file> <!-- Adds base schema that may be used during the upgrade process --> <file> <source>${project.build.directory}/upgrade/schema.ldif.${buildRevision}</source> <outputDirectory>template/config/upgrade</outputDirectory> </file> <!-- Adds example-plugin.zip to root directory --> <file> <source>${project.build.directory}/example-plugin.zip</source> <outputDirectory></outputDirectory> </file> </files> </component> opendj-sdk/opendj3-server-dev/src/main/assembly/opendj-snmp-archive-assembly.xml
New file @@ -0,0 +1,56 @@ <!-- ! CDDL HEADER START ! ! The contents of this file are subject to the terms of the ! Common Development and Distribution License, Version 1.0 only ! (the "License"). You may not use this file except in compliance ! with the License. ! ! You can obtain a copy of the license at ! trunk/opendj3/legal-notices/CDDLv1_0.txt ! or http://forgerock.org/license/CDDLv1.0.html. ! See the License for the specific language governing permissions ! and limitations under the License. ! ! When distributing Covered Code, include this CDDL HEADER in each ! file and include the License file at ! trunk/opendj3/legal-notices/CDDLv1_0.txt. If applicable, ! add the following below this CDDL HEADER, with the fields enclosed ! by brackets "[]" replaced with your own identifying information: ! Portions Copyright [yyyy] [name of copyright owner] ! ! CDDL HEADER END ! ! Copyright 2015 ForgeRock AS. ! --> <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> <id>opendj-snmp-zip-generation</id> <!-- Add General OpenDJ final archive content --> <componentDescriptors> <componentDescriptor>src/main/assembly/opendj-archive-component.xml</componentDescriptor> </componentDescriptors> <!-- Assembly descriptor SNMP complement for OpenDJ archive --> <fileSets> <!-- Adds src/snmp/resource/security folder --> <fileSet> <directory>${basedir}/src/snmp/resource/security</directory> <outputDirectory>template/config/snmp/security</outputDirectory> </fileSet> </fileSets> <files> <!-- Adds generated mib rfc 2605 file --> <file> <source>${snmp.mib.dir}/rfc2605.txt</source> <outputDirectory>snmp/mib</outputDirectory> </file> <!-- Adds generated snmp jar --> <file> <source>${jars.dir}/snmp-mib2605.jar</source> <outputDirectory>lib/extensions</outputDirectory> </file> </files> </assembly> opendj-sdk/opendj3-server-dev/src/main/resources/META-INF/opendj.properties
New file @@ -0,0 +1,67 @@ # CDDL HEADER START # # The contents of this file are subject to the terms of the # Common Development and Distribution License, Version 1.0 only # (the "License"). You may not use this file except in compliance # with the License. # # You can obtain a copy of the license at legal-notices/CDDLv1_0.txt # or http://forgerock.org/license/CDDLv1.0.html. # See the License for the specific language governing permissions # and limitations under the License. # # When distributing Covered Code, include this CDDL HEADER in each # file and include the License file at legal-notices/CDDLv1_0.txt. # If applicable, add the following below this CDDL HEADER, with the # fields enclosed by brackets "[]" replaced with your own identifying # information: # Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # Copyright 2015 ForgeRock AS # This file contains product information. It was dynamically generated # as part of the build process and should not be edited directly. # TODO: this file is not yet used. It is intended to replace class # src/main/resources/java-stubs/org/opends/server/util/DynamicConstants.java # with a new class that will loads this properties file # Product name. product.name=${project.name} product.name.short=${shortProductName} product.release.date=${softwareReleaseDate} product.publication.date=${publicationDate} # Version. version=${project.version} version.compact=${shortProductName}-${project.version} version.major=${parsedVersion.majorVersion} version.minor=${parsedVersion.minorVersion} version.point=${parsedVersion.incrementalVersion} version.qualifier=${parsedVersion.qualifier} version.build=${parsedVersion.buildNumber} # Additional build information. build.id=${buildDateTime} build.user=${user.name} build.java.version=${java.version} build.java.vendor=${java.vendor} build.jvm.version=${java.vm.version} build.jvm.vendor=${java.vm.vendor} build.os=${os.name} ${os.version} ${os.arch} build.isdebug=${isDebugBuild} # Patch bug fix IDs for this build. patch.fix.ids=${patchFixIds} # Source version. scm.url=${scm.url} scm.revision=${buildRevision} # Documentation. doc.homepage.url=${docHomepageUrl} doc.wiki.url=${docWikiUrl} doc.guide.ref.url=${docGuideRefUrl} doc.guide.admin.url=${docGuideAdminUrl} opendj-sdk/opendj3-server-dev/src/main/resources/META-INF/product/buildinfo
New file @@ -0,0 +1 @@ ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.${buildRevision} opendj-sdk/opendj3-server-dev/src/main/resources/bootstrap/manifest-bootstrap
New file @@ -0,0 +1,6 @@ Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven ${maven.version} Built-By: ${user.name} Build-Jdk: ${java.version} ${classpath.bootstrap} opendj-sdk/opendj3-server-dev/src/main/resources/bootstrap/manifest-bootstrap-client
New file @@ -0,0 +1,6 @@ Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven ${maven.version} Built-By: ${user.name} Build-Jdk: ${java.version} ${classpath.bootstrap-client} opendj-sdk/opendj3-server-dev/src/main/resources/java-stubs/org/opends/server/util/DynamicConstants.java
File was renamed from opendj-sdk/opendj3-server-dev/resource/DynamicConstants.java.stubs @@ -22,7 +22,7 @@ * * * Copyright 2006-2009 Sun Microsystems, Inc. * Portions Copyright 2011 ForgeRock AS * Portions Copyright 2011-2015 ForgeRock AS */ package org.opends.server.util; @@ -41,48 +41,48 @@ /** * The official full product name for the Directory Server. */ public static String PRODUCT_NAME = "${PRODUCT_NAME}"; public static String PRODUCT_NAME = "${project.name}"; /** * The short product name for the Directory Server. */ public static String SHORT_NAME = "${SHORT_NAME}"; public static String SHORT_NAME = "${shortProductName}"; /** * The major version number for the Directory Server. */ public static int MAJOR_VERSION = ${MAJOR_VERSION}; public static int MAJOR_VERSION = ${parsedVersion.majorVersion}; /** * The minor version number for the Directory Server. */ public static int MINOR_VERSION = ${MINOR_VERSION}; public static int MINOR_VERSION = ${parsedVersion.minorVersion}; /** * The point version number for the Directory Server. */ public static int POINT_VERSION = ${POINT_VERSION}; public static int POINT_VERSION = ${parsedVersion.incrementalVersion}; /** * The official build number for the Directory Server. */ public static int BUILD_NUMBER = ${BUILD_NUMBER}; public static int BUILD_NUMBER = ${parsedVersion.buildNumber}; /** * The version qualifier string for the Directory Server. */ public static String VERSION_QUALIFIER = "${VERSION_QUALIFIER}"; public static String VERSION_QUALIFIER = "${parsedVersion.qualifier}"; /** * The set of bug IDs for fixes included in this build of the Directory * Server. */ public static String FIX_IDS = "${FIX_IDS}"; public static String FIX_IDS = "${patchFixIds}"; /** * The build ID for the generated build of the Directory Server. */ public static String BUILD_ID = "${timestamp}"; public static String BUILD_ID = "${buildDateTime}"; /** * The username of the user that created this build. @@ -107,7 +107,7 @@ /** * The vendor for the JVM used to generate this build. */ public static String BUILD_JVM_VENDOR = "${JVM_VENDOR}"; public static String BUILD_JVM_VENDOR = "${java.vm.vendor}"; /** * The operating system on which this build was generated. @@ -119,54 +119,51 @@ * include additional debugging facilities not available in standard release * versions. */ public static boolean DEBUG_BUILD = ${DEBUG_BUILD}; public static boolean DEBUG_BUILD = ${isDebugBuild}; /** * The Subversion revision number on which this build is based. */ public static long REVISION_NUMBER = ${REVISION_NUMBER}; public static long REVISION_NUMBER = ${buildRevision}; /** * The Subversion url repository location on which this build is based. */ public static String URL_REPOSITORY = "${URL_REPOSITORY}"; public static String URL_REPOSITORY = "${scm.url}"; /** * The documentation home. */ public static String DOC_REFERENCE_HOME = "${DOC_REFERENCE_HOME}"; "${docHomepageUrl}"; /** * The documentation url. */ public static String DOC_REFERENCE_WIKI = "${DOC_REFERENCE_WIKI}"; "${docWikiUrl}"; /** * The documentation url. */ public static String DOC_QUICK_REFERENCE_GUIDE = "${DOC_QUICK_REFERENCE_GUIDE}"; "${docGuideRefUrl}"; /** * The administration guide. */ public static String ADMINISTRATION_GUIDE_URL = "${ADMINISTRATION_GUIDE_URL}"; "${docGuideAdminUrl}"; /** * A string representation of the version number. */ public static String VERSION_NUMBER_STRING = "${VERSION_NUMBER_STRING}"; public static String VERSION_NUMBER_STRING = String.format("%s.%s.%s", MAJOR_VERSION, MINOR_VERSION, POINT_VERSION); /** * A string representation of the version number. */ public static String OPENDJ_NUMBER_STRING = "${VERSION_NUMBER_STRING}"; public static String OPENDJ_NUMBER_STRING = VERSION_NUMBER_STRING; /** * A string representation of the release version. opendj-sdk/opendj3-server-dev/src/main/resources/org/forgerock/checkstyle/opendj.sourceheader
opendj-sdk/opendj3-server-dev/src/main/resources/org/forgerock/checkstyle/opends-checkstyle.xml
File was renamed from opendj-sdk/opendj3-server-dev/ext/checkstyle/opends-checkstyle.xml @@ -5,14 +5,25 @@ <module name="Checker"> <module name="TreeWalker"> <property name="cacheFile" value="${basedir}/.checkstyle-cache/opends-checkstyle.cache" /> <!-- Ensure that each source file starts with the appropriate header --> <module name="RegexpHeader"> <property name="headerFile" value="${basedir}/ext/checkstyle/opendj.sourceheader" /> <property name="headerFile" value="${basedir}/src/main/resources/org/forgerock/checkstyle/opendj.sourceheader" /> </module> <!-- Ensure that no tab characters are used --> <module name="FileTabCharacter"> <property name="eachLine" value="true"/> </module> <!-- Ensure that no line ends with whitespace --> <module name="RegexpSingleline"> <!-- \s matches whitespace character, $ matches end of line. --> <property name="format" value="\s+$"/> <property name="message" value="Line ends with whitespace." /> </module> <module name="TreeWalker"> <property name="cacheFile" value="${basedir}/.checkstyle-cache/opends-checkstyle.cache" /> <!-- Ensure that all classes and interfaces are documented --> <module name="JavadocType"> @@ -49,18 +60,6 @@ <property name="max" value="120" /> </module> <!-- Ensure that no tab characters are used --> <module name="TabCharacter" /> <!-- Ensure that no line ends with whitespace --> <module name="GenericIllegalRegexp"> <property name="format" value="\s$" /> <property name="message" value="Line ends with whitespace." /> </module> <!-- Check for string == rather than .equals checks --> <module name="StringLiteralEquality" /> opendj-sdk/opendj3-server-dev/src/main/resources/org/forgerock/checkstyle/unit-test-suppressions.xml
New file @@ -0,0 +1,68 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- The contents of this file are subject to the terms of the Common Development and Distribution License (the License). You may not use this file except in compliance with the License. You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the specific language governing permission and limitations under the License. When distributing Covered Software, include this CDDL Header Notice in each file and include the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL Header, with the fields enclosed by brackets [] replaced by your own identifying information: "Portions Copyrighted [year] [name of copyright owner]". Copyright 2012-2015 ForgeRock AS. All rights reserved. --> <!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN" "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd"> <suppressions> <!-- This Checkstyle suppressions file contains suppressions for any checks that we don't want to enforce against unit tests. It is not possible to rely on same file provided by forgerock-build-tools because 1) path of tests source files is different, 2) lot of classes are violating others suppressions. Once/if tests are moved under /src/test/java directory and additional suppressions added at the end of the file can be removed due to code cleaning, then this file may be deleted and replaced by equivalent in forgerock-build-tools. --> <!-- check-src-default.xml --> <suppress checks="JavadocPackage" files="/tests/unit-tests-testng/src/server" /> <suppress checks="JavadocType" files="/tests/unit-tests-testng/src/server" /> <suppress checks="JavadocMethod" files="/tests/unit-tests-testng/src/server" /> <suppress checks="JavadocVariable" files="/tests/unit-tests-testng/src/server" /> <suppress checks="JavadocStyle" files="/tests/unit-tests-testng/src/server" /> <!-- <suppress checks="ModifierOrder" files="/tests/unit-tests-testng/src/server" /> <suppress checks="RedundantModifier" files="/tests/unit-tests-testng/src/server" /> --> <suppress checks="RedundantThrows" files="/tests/unit-tests-testng/src/server" /> <suppress checks="FinalClass" files="/tests/unit-tests-testng/src/server" /> <suppress checks="HideUtilityClassConstructor" files="/tests/unit-tests-testng/src/server" /> <suppress checks="InterfaceIsType" files="/tests/unit-tests-testng/src/server" /> <suppress checks="VisibilityModifier" files="/tests/unit-tests-testng/src/server" /> <suppress checks="Translation" files="/tests/unit-tests-testng/src/server" /> <suppress checks="FileLength" files="/tests/unit-tests-testng/src/server" /> <suppress checks="MethodLength" files="/tests/unit-tests-testng/src/server" /> <suppress checks="ParameterNumber" files="/tests/unit-tests-testng/src/server" /> <suppress checks="MissingSwitchDefault" files="/tests/unit-tests-testng/src/server" /> <suppress checks="DesignForExtension" files="/tests/unit-tests-testng/src/server" /> <suppress checks="TodoComment" files="/tests/unit-tests-testng/src/server" /> <!-- Additional suppressions (compared to forgerock-build-tools equivalent file) --> <suppress checks="LineLength" files="/tests/unit-tests-testng/src/server" /> <suppress checks="RegexpSingleline" files="/tests/unit-tests-testng/src/server" /> <suppress checks="FileTabCharacter" files="/tests/unit-tests-testng/src/server" /> <suppress checks="LineLength" files="/tests/unit-tests-testng/src/server" /> <suppress checks="RedundantImport" files="/tests/unit-tests-testng/src/server" /> <suppress checks="UnusedImports" files="/tests/unit-tests-testng/src/server" /> <suppress checks="EmptyStatement" files="/tests/unit-tests-testng/src/server" /> <suppress checks="EqualsHashCode" files="/tests/unit-tests-testng/src/server" /> </suppressions> opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/access_control.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/access_control.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=ACCESS_CONTROL #global.category=ACCESS_CONTROL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/access_control_ca_ES.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/access_control_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/access_control_de.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=ACCESS_CONTROL #global.category=ACCESS_CONTROL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/access_control_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/access_control_es.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=ACCESS_CONTROL #global.category=ACCESS_CONTROL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/access_control_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/access_control_fr.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=ACCESS_CONTROL #global.category=ACCESS_CONTROL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/access_control_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/access_control_ja.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=ACCESS_CONTROL #global.category=ACCESS_CONTROL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/access_control_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/access_control_ko.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=ACCESS_CONTROL #global.category=ACCESS_CONTROL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/access_control_pl.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/access_control_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/access_control_zh_CN.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=ACCESS_CONTROL #global.category=ACCESS_CONTROL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/access_control_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/access_control_zh_TW.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=ACCESS_CONTROL #global.category=ACCESS_CONTROL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=ADMIN #global.category=ADMIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_ca_ES.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_de.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=ADMIN #global.category=ADMIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_es.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=ADMIN #global.category=ADMIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_fr.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=ADMIN #global.category=ADMIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_ja.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=ADMIN #global.category=ADMIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_ko.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=ADMIN #global.category=ADMIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_pl.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_tool.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_tool.properties @@ -29,8 +29,8 @@ # Global directives # Do not translate # global.category=ADMIN_TOOL global.ordinal=-1 #global.category=ADMIN_TOOL ##global.ordinal=-1 # # Format string definitions @@ -1415,16 +1415,16 @@ 64 format. ERR_CTRL_PANEL_ERROR_READING_FILE=An error occurred reading the contents \ of the file. Details: %s ERR_CTRL_PANEL_ERROR_DECODING_BASE_64=An error occurred decoding the \ ERR_CTRL_PANEL_ERROR_DECODING_BASE64=An error occurred decoding the \ provided base 64 string. Details: %s INFO_CTRL_PANEL_EDIT_BINARY_ATTRIBUTE_TITLE=Edit binary attribute INFO_CTRL_PANEL_USE_CONTENTS_OF_FILE=Use contents of file: INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE_64=Specify binary contents in base 64 \ INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE64=Specify binary contents in base 64 \ format: INFO_CTRL_PANEL_REFRESH_BUTTON_LABEL=Refresh INFO_CTRL_PANEL_IMAGE_PREVIEW_LABEL=Image Preview: INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE_64=- Specify the value in Base 64 - INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE64=- Specify the value in Base 64 - INFO_CTRL_PANEL_IMAGE_OF_ATTRIBUTE_LABEL=Image of Attribute INFO_CTRL_PANEL_PREVIEW_NOT_AVAILABLE_LABEL=Preview not available. opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_tool_ca_ES.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_tool_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_tool_de.properties @@ -28,8 +28,8 @@ # Global directives # Do not translate # global.category=ADMIN_TOOL global.ordinal=-1 #global.category=ADMIN_TOOL ##global.ordinal=-1 # # Format string definitions @@ -819,14 +819,14 @@ ERR_CTRL_PANEL_CANNOT_READ_FILE=Datei '%s' kann nicht gelesen werden. Pr\u00fcfen Sie, ob Sie \u00fcber Leseberechtigungen an der Datei verf\u00fcgen. ERR_CTRL_PANEL_VALUE_IN_BASE_64_REQUIRED=Sie m\u00fcssen einen Wert im Base 64-Format angeben. ERR_CTRL_PANEL_ERROR_READING_FILE=Beim Lesen des Dateiinhalts ist ein Fehler aufgetreten. Details: %s ERR_CTRL_PANEL_ERROR_DECODING_BASE_64=Beim Dekodieren der angegebenen Base 64-Zeichenfolge ist ein Fehler aufgetreten. Details: %s ERR_CTRL_PANEL_ERROR_DECODING_BASE64=Beim Dekodieren der angegebenen Base 64-Zeichenfolge ist ein Fehler aufgetreten. Details: %s INFO_CTRL_PANEL_EDIT_BINARY_ATTRIBUTE_TITLE=Bin\u00e4rattribut bearbeiten INFO_CTRL_PANEL_USE_CONTENTS_OF_FILE=Inhalt der folgenden Datei verwenden: INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE_64=Bin\u00e4r-Inhalt in Base 64-Format angeben: INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE64=Bin\u00e4r-Inhalt in Base 64-Format angeben: INFO_CTRL_PANEL_REFRESH_BUTTON_LABEL=Aktualisieren INFO_CTRL_PANEL_IMAGE_PREVIEW_LABEL=Bildvoranschau INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE_64=- Den Wert in Base 64 angeben - INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE64=- Den Wert in Base 64 angeben - INFO_CTRL_PANEL_IMAGE_OF_ATTRIBUTE_LABEL=Bild des Attributs INFO_CTRL_PANEL_PREVIEW_NOT_AVAILABLE_LABEL=Voranschau nicht verf\u00fcgbar. opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_tool_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_tool_es.properties @@ -28,8 +28,8 @@ # Global directives # Do not translate # global.category=ADMIN_TOOL global.ordinal=-1 #global.category=ADMIN_TOOL ##global.ordinal=-1 # # Format string definitions @@ -819,14 +819,14 @@ ERR_CTRL_PANEL_CANNOT_READ_FILE=No se puede leer el archivo '%s'. Compruebe que dispone de derechos de lectura. ERR_CTRL_PANEL_VALUE_IN_BASE_64_REQUIRED=Debe proporcionar un valor en formato base 64. ERR_CTRL_PANEL_ERROR_READING_FILE=Se produjo un error al leer el contenido del archivo. Detalles: %s ERR_CTRL_PANEL_ERROR_DECODING_BASE_64=Se produjo un error al descodificar la cadena en base64 proporcionada. Detalles: %s ERR_CTRL_PANEL_ERROR_DECODING_BASE64=Se produjo un error al descodificar la cadena en base64 proporcionada. Detalles: %s INFO_CTRL_PANEL_EDIT_BINARY_ATTRIBUTE_TITLE=Editar atributo binario INFO_CTRL_PANEL_USE_CONTENTS_OF_FILE=Usar contenido del archivo: INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE_64=Especificar el contenido binario en formato base64: INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE64=Especificar el contenido binario en formato base64: INFO_CTRL_PANEL_REFRESH_BUTTON_LABEL=Actualizar INFO_CTRL_PANEL_IMAGE_PREVIEW_LABEL=Vista previa de la imagen: INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE_64=- Especifique el valor en base64 - INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE64=- Especifique el valor en base64 - INFO_CTRL_PANEL_IMAGE_OF_ATTRIBUTE_LABEL=Imagen de atributo INFO_CTRL_PANEL_PREVIEW_NOT_AVAILABLE_LABEL=La vista previa no est\u00e1 disponible. opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_tool_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_tool_fr.properties @@ -28,8 +28,8 @@ # Global directives # Do not translate # global.category=ADMIN_TOOL global.ordinal=-1 #global.category=ADMIN_TOOL ##global.ordinal=-1 # # Format string definitions @@ -819,14 +819,14 @@ ERR_CTRL_PANEL_CANNOT_READ_FILE=Ne peut lire le fichier '%s'. V\u00e9rifiez que vous avez des droits en lecture le concernant. ERR_CTRL_PANEL_VALUE_IN_BASE_64_REQUIRED=Vous devez fournir une valeur en format de base 64. ERR_CTRL_PANEL_ERROR_READING_FILE=Une erreur s'est produite lors de la lecture du contenu du fichier. D\u00e9tails\u00a0: %s ERR_CTRL_PANEL_ERROR_DECODING_BASE_64=Une erreur s'est produite lors du d\u00e9codage de la cha\u00eene de base 64. D\u00e9tails\u00a0: %s ERR_CTRL_PANEL_ERROR_DECODING_BASE64=Une erreur s'est produite lors du d\u00e9codage de la cha\u00eene de base 64. D\u00e9tails\u00a0: %s INFO_CTRL_PANEL_EDIT_BINARY_ATTRIBUTE_TITLE=\u00c9diter un attribut binaire INFO_CTRL_PANEL_USE_CONTENTS_OF_FILE=Utiliser le contenu du fichier\u00a0: INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE_64=Indiquez le contenu bianire en format de base 64\u00a0: INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE64=Indiquez le contenu bianire en format de base 64\u00a0: INFO_CTRL_PANEL_REFRESH_BUTTON_LABEL=Actualiser INFO_CTRL_PANEL_IMAGE_PREVIEW_LABEL=Aper\u00e7u de l'image\u00a0: INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE_64=- Indiquez la valeur en base 64 - INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE64=- Indiquez la valeur en base 64 - INFO_CTRL_PANEL_IMAGE_OF_ATTRIBUTE_LABEL=Image de l'attribut INFO_CTRL_PANEL_PREVIEW_NOT_AVAILABLE_LABEL=Aper\u00e7u indisponible. opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_tool_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_tool_ja.properties @@ -28,8 +28,8 @@ # Global directives # Do not translate # global.category=ADMIN_TOOL global.ordinal=-1 #global.category=ADMIN_TOOL ##global.ordinal=-1 # # Format string definitions @@ -816,14 +816,14 @@ ERR_CTRL_PANEL_CANNOT_READ_FILE=\u30d5\u30a1\u30a4\u30eb '%s' \u3092\u8aad\u307f\u53d6\u308c\u307e\u305b\u3093\u3002\u305d\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u5bfe\u3059\u308b\u8aad\u307f\u53d6\u308a\u6a29\u9650\u304c\u3042\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002 ERR_CTRL_PANEL_VALUE_IN_BASE_64_REQUIRED=\u5024\u3092 Base 64 \u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 ERR_CTRL_PANEL_ERROR_READING_FILE=\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u8aad\u307f\u53d6\u308a\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30: %s ERR_CTRL_PANEL_ERROR_DECODING_BASE_64=\u6307\u5b9a\u3055\u308c\u305f Base 64 \u6587\u5b57\u5217\u306e\u5fa9\u53f7\u5316\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30: %s ERR_CTRL_PANEL_ERROR_DECODING_BASE64=\u6307\u5b9a\u3055\u308c\u305f Base 64 \u6587\u5b57\u5217\u306e\u5fa9\u53f7\u5316\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30: %s INFO_CTRL_PANEL_EDIT_BINARY_ATTRIBUTE_TITLE=\u30d0\u30a4\u30ca\u30ea\u5c5e\u6027\u306e\u7de8\u96c6 INFO_CTRL_PANEL_USE_CONTENTS_OF_FILE=\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u4f7f\u7528: INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE_64=\u30d0\u30a4\u30ca\u30ea\u30b3\u30f3\u30c6\u30f3\u30c4\u3092 Base 64 \u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059\u3002 INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE64=\u30d0\u30a4\u30ca\u30ea\u30b3\u30f3\u30c6\u30f3\u30c4\u3092 Base 64 \u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059\u3002 INFO_CTRL_PANEL_REFRESH_BUTTON_LABEL=\u66f4\u65b0 INFO_CTRL_PANEL_IMAGE_PREVIEW_LABEL=\u30a4\u30e1\u30fc\u30b8\u306e\u30d7\u30ec\u30d3\u30e5\u30fc: INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE_64=- Base 64 \u3067\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044 - INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE64=- Base 64 \u3067\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044 - INFO_CTRL_PANEL_IMAGE_OF_ATTRIBUTE_LABEL=\u5c5e\u6027\u306e\u30a4\u30e1\u30fc\u30b8 INFO_CTRL_PANEL_PREVIEW_NOT_AVAILABLE_LABEL=\u30d7\u30ec\u30d3\u30e5\u30fc\u306f\u5229\u7528\u3067\u304d\u307e\u305b\u3093\u3002 opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_tool_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_tool_ko.properties @@ -28,8 +28,8 @@ # Global directives # Do not translate # global.category=ADMIN_TOOL global.ordinal=-1 #global.category=ADMIN_TOOL ##global.ordinal=-1 # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_tool_pl.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_tool_pl.properties @@ -28,8 +28,8 @@ # Global directives # Do not translate # global.category=ADMIN_TOOL global.ordinal=-1 #global.category=ADMIN_TOOL ##global.ordinal=-1 # # Format string definitions @@ -111,7 +111,7 @@ INFO_NOT_AVAILABLE_SERVER_DOWN_TOOLTIP=<html>Informacja dost\u0119pna tylko gdy serwer dzia\u0142a i ty jeste\u015b zautentykowany<br> jako u\u017cytkownik administruj\u0105cy. INFO_FINISH_BUTTON_UNINSTALL_TOOLTIP=Zako\u0144cz deinstalacj\u0119 ERR_LAUNCHING_PRE_EXTERNAL_INITIALIZATION=B\u0142\u0105d podczas uruchamiania operacji. ERR_CTRL_PANEL_ERROR_DECODING_BASE_64=An error occurred decoding the provided base 64 string. Szczeg\u00f3\u0142y: %s ERR_CTRL_PANEL_ERROR_DECODING_BASE64=An error occurred decoding the provided base 64 string. Szczeg\u00f3\u0142y: %s INFO_REPLICATION_STATUS_MENU_PROMPT=Wy\u015bwietl Status Powielania INFO_CTRL_PANEL_ERROR_CONNECTING_TO_LOCAL=The following errors occurred connecting to the local server:<br>%s<br>If you continue without providing authentication no monitoring information will be displayed.<br><br>Czy chcesz kontynuowa\u0107? INFO_CTRL_PANEL_VLV_INDEXES_HEADER_REQUIRES_REBUILD=Wymaga przebudowa opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_tool_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_tool_zh_CN.properties @@ -28,8 +28,8 @@ # Global directives # Do not translate # global.category=ADMIN_TOOL global.ordinal=-1 #global.category=ADMIN_TOOL ##global.ordinal=-1 # # Format string definitions @@ -819,14 +819,14 @@ ERR_CTRL_PANEL_CANNOT_READ_FILE=\u65e0\u6cd5\u8bfb\u53d6\u6587\u4ef6 '%s'\u3002\u68c0\u67e5\u60a8\u662f\u5426\u5177\u6709\u8bfb\u53d6\u8be5\u6587\u4ef6\u7684\u6743\u9650\u3002 ERR_CTRL_PANEL_VALUE_IN_BASE_64_REQUIRED=\u60a8\u63d0\u4f9b\u7684\u503c\u5fc5\u987b\u91c7\u7528 Base 64 \u683c\u5f0f\u3002 ERR_CTRL_PANEL_ERROR_READING_FILE=\u8bfb\u53d6\u6587\u4ef6\u5185\u5bb9\u65f6\u51fa\u73b0\u9519\u8bef\u3002\u8be6\u7ec6\u4fe1\u606f: %s ERR_CTRL_PANEL_ERROR_DECODING_BASE_64=\u5bf9\u63d0\u4f9b\u7684 Base 64 \u5b57\u7b26\u4e32\u8fdb\u884c\u89e3\u7801\u65f6\u51fa\u73b0\u9519\u8bef\u3002\u8be6\u7ec6\u4fe1\u606f: %s ERR_CTRL_PANEL_ERROR_DECODING_BASE64=\u5bf9\u63d0\u4f9b\u7684 Base 64 \u5b57\u7b26\u4e32\u8fdb\u884c\u89e3\u7801\u65f6\u51fa\u73b0\u9519\u8bef\u3002\u8be6\u7ec6\u4fe1\u606f: %s INFO_CTRL_PANEL_EDIT_BINARY_ATTRIBUTE_TITLE=\u7f16\u8f91\u4e8c\u8fdb\u5236\u5c5e\u6027 INFO_CTRL_PANEL_USE_CONTENTS_OF_FILE=\u4f7f\u7528\u6587\u4ef6\u5185\u5bb9: INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE_64=\u4ee5 Base 64 \u683c\u5f0f\u6307\u5b9a\u4e8c\u8fdb\u5236\u5185\u5bb9: INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE64=\u4ee5 Base 64 \u683c\u5f0f\u6307\u5b9a\u4e8c\u8fdb\u5236\u5185\u5bb9: INFO_CTRL_PANEL_REFRESH_BUTTON_LABEL=\u5237\u65b0 INFO_CTRL_PANEL_IMAGE_PREVIEW_LABEL=\u56fe\u50cf\u9884\u89c8: INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE_64=- \u4ee5 Base 64 \u6307\u5b9a\u503c - INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE64=- \u4ee5 Base 64 \u6307\u5b9a\u503c - INFO_CTRL_PANEL_IMAGE_OF_ATTRIBUTE_LABEL=\u5c5e\u6027\u7684\u56fe\u50cf INFO_CTRL_PANEL_PREVIEW_NOT_AVAILABLE_LABEL=\u9884\u89c8\u4e0d\u53ef\u7528\u3002 opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_tool_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_tool_zh_TW.properties @@ -28,8 +28,8 @@ # Global directives # Do not translate # global.category=ADMIN_TOOL global.ordinal=-1 #global.category=ADMIN_TOOL ##global.ordinal=-1 # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_zh_CN.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=ADMIN #global.category=ADMIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/admin_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/admin_zh_TW.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=ADMIN #global.category=ADMIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/backend.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/backend.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=BACKEND #global.category=BACKEND # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/backend_ca_ES.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/backend_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/backend_de.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=BACKEND #global.category=BACKEND # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/backend_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/backend_es.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=BACKEND #global.category=BACKEND # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/backend_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/backend_fr.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=BACKEND #global.category=BACKEND # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/backend_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/backend_ja.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=BACKEND #global.category=BACKEND # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/backend_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/backend_ko.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=BACKEND #global.category=BACKEND # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/backend_pl.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/backend_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/backend_zh_CN.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=BACKEND #global.category=BACKEND # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/backend_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/backend_zh_TW.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=BACKEND #global.category=BACKEND # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/config.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/config.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CONFIG #global.category=CONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/config_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/config_de.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CONFIG #global.category=CONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/config_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/config_es.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CONFIG #global.category=CONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/config_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/config_fr.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CONFIG #global.category=CONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/config_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/config_ja.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CONFIG #global.category=CONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/config_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/config_ko.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CONFIG #global.category=CONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/config_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/config_zh_CN.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CONFIG #global.category=CONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/config_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/config_zh_TW.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CONFIG #global.category=CONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/core.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/core.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CORE #global.category=CORE # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/core_ca_ES.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/core_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/core_de.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CORE #global.category=CORE # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/core_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/core_es.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CORE #global.category=CORE # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/core_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/core_fr.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CORE #global.category=CORE # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/core_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/core_ja.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CORE #global.category=CORE # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/core_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/core_ko.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CORE #global.category=CORE # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/core_pl.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/core_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/core_zh_CN.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CORE #global.category=CORE # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/core_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/core_zh_TW.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=CORE #global.category=CORE # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/dsconfig.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/dsconfig.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=DSCONFIG ##global.category=DSCONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/dsconfig_ca_ES.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/dsconfig_ca_ES.properties @@ -25,7 +25,7 @@ # # Global directives # global.category=DSCONFIG #global.category=DSCONFIG # ERR_DSCFG_ERROR_LDAP_FAILED_TO_CONNECT_1002=No es pot connectar al servidor "%s" al port %s ERR_DSCFG_ERROR_LDAP_SIMPLE_BIND_NOT_SUPPORTED_1003=No es pot autentificat utilitzant autentificaci\u00f3 senzilla opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/dsconfig_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/dsconfig_de.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=DSCONFIG #global.category=DSCONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/dsconfig_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/dsconfig_es.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=DSCONFIG #global.category=DSCONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/dsconfig_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/dsconfig_fr.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=DSCONFIG #global.category=DSCONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/dsconfig_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/dsconfig_ja.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=DSCONFIG #global.category=DSCONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/dsconfig_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/dsconfig_ko.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=DSCONFIG #global.category=DSCONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/dsconfig_pl.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/dsconfig_pl.properties @@ -25,7 +25,7 @@ # # Global directives # global.category=DSCONFIG #global.category=DSCONFIG INFO_EDITOR_OPTION_FINISH_MODIFY_COMPONENT_1352=zako\u0144cz - zastosuj zmiany w %s ERR_DSCFG_ERROR_VALUE_DOES_NOT_EXIST_159=Warto\u015b\u0107 % w\u0142a\u015bciwo\u015bci %s nie istnieje opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/dsconfig_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/dsconfig_zh_CN.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=DSCONFIG #global.category=DSCONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/dsconfig_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/dsconfig_zh_TW.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=DSCONFIG #global.category=DSCONFIG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/extension.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/extension.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=EXTENSIONS #global.category=EXTENSIONS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/extension_ca_ES.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/extension_ca_ES.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=EXTENSIONS #global.category=EXTENSIONS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/extension_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/extension_de.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=EXTENSIONS #global.category=EXTENSIONS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/extension_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/extension_es.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=EXTENSIONS #global.category=EXTENSIONS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/extension_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/extension_fr.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=EXTENSIONS #global.category=EXTENSIONS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/extension_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/extension_ja.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=EXTENSIONS #global.category=EXTENSIONS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/extension_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/extension_ko.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=EXTENSIONS #global.category=EXTENSIONS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/extension_pl.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/extension_pl.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=EXTENSIONS #global.category=EXTENSIONS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/extension_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/extension_zh_CN.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=EXTENSIONS #global.category=EXTENSIONS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/extension_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/extension_zh_TW.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=EXTENSIONS #global.category=EXTENSIONS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/jeb.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/jeb.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=JEB #global.category=JEB # # Format string definitions @@ -146,6 +146,8 @@ not be created in %s ERR_JEB_BACKUP_CANNOT_RESTORE_78=An error occurred while attempting to \ restore the files from backup %s: %s ERR_JEB_BACKUP_MISSING_BACKUPID_79=The information for backup %s could \ not be found in the backup directory %s NOTE_JEB_BACKUP_FILE_UNCHANGED_82=Not changed: %s NOTE_JEB_BACKUP_CLEANER_ACTIVITY_83=Including %s additional log file(s) due \ to cleaner activity opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/jeb_ca_ES.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/jeb_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/jeb_de.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=JEB #global.category=JEB # # Format string definitions @@ -95,6 +95,7 @@ ERR_JEB_INCR_BACKUP_FROM_WRONG_BASE_76=Es muss eine der folgenden Basis-Sicherungs-IDs f\u00fcr die inkrementelle Sicherung spezifiziert werden: %s ERR_JEB_CANNOT_CREATE_BACKUP_TAG_FILE_77=Die Sicherungs-Tag-Datei %s konnnte nicht in %s erstellt werden ERR_JEB_BACKUP_CANNOT_RESTORE_78=Fehler beim Versuch, die Dateien der Sicherung %s wiederherzustellen: %s ERR_JEB_BACKUP_MISSING_BACKUPID_79=Die Informationen f\u00fcr die Sicherung %s konnten nicht in dem Sicherungsverzeichnis %s gefunden werden NOTE_JEB_BACKUP_FILE_UNCHANGED_82=Nicht ge\u00e4ndert: %s NOTE_JEB_BACKUP_CLEANER_ACTIVITY_83=Aufgrund von Bereinigungsaktivit\u00e4ten werden %s zus\u00e4tzliche Protokolldatei(en) eingeschlossen NOTE_JEB_BACKUP_VERIFY_FILE_84=\u00dcberpr\u00fcfung: %s opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/jeb_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/jeb_es.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=JEB #global.category=JEB # # Format string definitions @@ -95,6 +95,7 @@ ERR_JEB_INCR_BACKUP_FROM_WRONG_BASE_76=Debe especificarse uno de los siguientes Id. de copia de seguridad de base para la copia de seguridad incremental: %s ERR_JEB_CANNOT_CREATE_BACKUP_TAG_FILE_77=No pudo crearse el archivo de etiqueta de copia de seguridad %s en %s ERR_JEB_BACKUP_CANNOT_RESTORE_78=Se ha producido un error al tratar de restaurar los archivos desde la copia de seguridad %s: %s ERR_JEB_BACKUP_MISSING_BACKUPID_79=No pudo encontrarse la informaci\u00f3n para la copia de seguridad %s en el directorio de copia de seguridad %s NOTE_JEB_BACKUP_FILE_UNCHANGED_82=Sin cambios: %s NOTE_JEB_BACKUP_CLEANER_ACTIVITY_83=Incluyendo %s archivo(s) de registro adicional(es) debido a la actividad del depurador NOTE_JEB_BACKUP_VERIFY_FILE_84=Verificando: %s opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/jeb_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/jeb_fr.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=JEB #global.category=JEB # # Format string definitions @@ -95,6 +95,7 @@ ERR_JEB_INCR_BACKUP_FROM_WRONG_BASE_76=L'un des ID de sauvegarde de base suivants doit \u00eatre sp\u00e9cifi\u00e9 pour la sauvegarde incr\u00e9mentielle\u00a0: %s ERR_JEB_CANNOT_CREATE_BACKUP_TAG_FILE_77=Impossible de cr\u00e9er le fichier de balises de sauvegarde %s dans %s ERR_JEB_BACKUP_CANNOT_RESTORE_78=Une erreur s'est produite lors de la tentative de restauration des fichiers depuis la sauvegarde %s\u00a0: %s ERR_JEB_BACKUP_MISSING_BACKUPID_79=Les informations de la sauvegarde %s sont introuvables dans le r\u00e9pertoire de sauvegarde %s NOTE_JEB_BACKUP_FILE_UNCHANGED_82=Inchang\u00e9\u00a0: %s NOTE_JEB_BACKUP_CLEANER_ACTIVITY_83=Incluant %s fichiers journaux suppl\u00e9mentaires en raison de l'activit\u00e9 de nettoyage NOTE_JEB_BACKUP_VERIFY_FILE_84=V\u00e9rification\u00a0: %s opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/jeb_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/jeb_ja.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=JEB #global.category=JEB # # Format string definitions @@ -95,6 +95,7 @@ ERR_JEB_INCR_BACKUP_FROM_WRONG_BASE_76=\u5897\u5206\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306b\u306f\u6b21\u306e\u30d9\u30fc\u30b9\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 ID \u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059: %s ERR_JEB_CANNOT_CREATE_BACKUP_TAG_FILE_77=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u30bf\u30b0\u30d5\u30a1\u30a4\u30eb %s \u3092 %s \u5185\u306b\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f ERR_JEB_BACKUP_CANNOT_RESTORE_78=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 %s \u304b\u3089\u30d5\u30a1\u30a4\u30eb\u3092\u5fa9\u5143\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f: %s ERR_JEB_BACKUP_MISSING_BACKUPID_79=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 %s \u306e\u60c5\u5831\u304c\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea %s \u5185\u306b\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f NOTE_JEB_BACKUP_FILE_UNCHANGED_82=\u5909\u66f4\u3055\u308c\u3066\u3044\u307e\u305b\u3093: %s NOTE_JEB_BACKUP_CLEANER_ACTIVITY_83=\u30af\u30ea\u30fc\u30ca\u306e\u52d5\u4f5c\u306b\u3088\u308a\u3001%s \u306e\u8ffd\u52a0\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u542b\u3081\u3066\u3044\u307e\u3059 NOTE_JEB_BACKUP_VERIFY_FILE_84=\u691c\u8a3c\u3057\u3066\u3044\u307e\u3059: %s opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/jeb_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/jeb_ko.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=JEB #global.category=JEB # # Format string definitions @@ -94,6 +94,7 @@ ERR_JEB_INCR_BACKUP_FROM_WRONG_BASE_76=\uc99d\ubd84 \ubc31\uc5c5\uc5d0 \ub300\ud574 \ub2e4\uc74c \uae30\ubcf8 \ubc31\uc5c5 \uc544\uc774\ub514 \uc911 \ud558\ub098\ub97c \uc9c0\uc815\ud574\uc57c \ud569\ub2c8\ub2e4: %s ERR_JEB_CANNOT_CREATE_BACKUP_TAG_FILE_77=\ubc31\uc5c5 \ud0dc\uadf8 \ud30c\uc77c %s\uc744(\ub97c) %s\uc5d0\uc11c \ub9cc\ub4e4\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4. ERR_JEB_BACKUP_CANNOT_RESTORE_78=%s \ubc31\uc5c5\uc5d0\uc11c \ud30c\uc77c\uc744 \ubcf5\uc6d0\ud558\ub294 \ub3d9\uc548 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4: %s ERR_JEB_BACKUP_MISSING_BACKUPID_79=%s \ubc31\uc5c5\uc5d0 \ub300\ud55c \uc815\ubcf4\ub97c \ubc31\uc5c5 \ub514\ub809\ud1a0\ub9ac %s\uc5d0\uc11c \ucc3e\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4. NOTE_JEB_BACKUP_FILE_UNCHANGED_82=\ubcc0\uacbd\ub418\uc9c0 \uc54a\uc74c: %s NOTE_JEB_BACKUP_CLEANER_ACTIVITY_83=\ud074\ub9ac\ub108 \uc791\uc5c5\uc73c\ub85c \uc778\ud574 %s \ucd94\uac00 \ub85c\uadf8 \ud30c\uc77c\uc744 \ud3ec\ud568\ud569\ub2c8\ub2e4. NOTE_JEB_BACKUP_VERIFY_FILE_84=\ud655\uc778 \uc911: %s opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/jeb_pl.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/jeb_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/jeb_zh_CN.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=JEB #global.category=JEB # # Format string definitions @@ -95,6 +95,7 @@ ERR_JEB_INCR_BACKUP_FROM_WRONG_BASE_76=\u5fc5\u987b\u4e3a\u589e\u91cf\u5907\u4efd\u6307\u5b9a\u4ee5\u4e0b\u67d0\u4e2a\u57fa\u5907\u4efd ID: %s ERR_JEB_CANNOT_CREATE_BACKUP_TAG_FILE_77=\u5907\u4efd\u6807\u8bb0\u6587\u4ef6 %s \u65e0\u6cd5\u5728 %s \u4e2d\u521b\u5efa ERR_JEB_BACKUP_CANNOT_RESTORE_78=\u5728\u5c1d\u8bd5\u4ece\u5907\u4efd %s \u4e2d\u6062\u590d\u6587\u4ef6\u65f6\u51fa\u73b0\u9519\u8bef: %s ERR_JEB_BACKUP_MISSING_BACKUPID_79=\u5907\u4efd\u76ee\u5f55 %2$s \u4e2d\u627e\u4e0d\u5230\u5907\u4efd %1$s \u7684\u4fe1\u606f NOTE_JEB_BACKUP_FILE_UNCHANGED_82=\u672a\u66f4\u6539: %s NOTE_JEB_BACKUP_CLEANER_ACTIVITY_83=\u7531\u4e8e\u6e05\u7406\u5668\u6d3b\u52a8\u800c\u5305\u62ec %s \u4e2a\u989d\u5916\u7684\u65e5\u5fd7\u6587\u4ef6 NOTE_JEB_BACKUP_VERIFY_FILE_84=\u6b63\u5728\u9a8c\u8bc1: %s opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/jeb_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/jeb_zh_TW.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=JEB #global.category=JEB # # Format string definitions @@ -94,6 +94,7 @@ ERR_JEB_INCR_BACKUP_FROM_WRONG_BASE_76=\u5c0d\u65bc\u589e\u91cf\u5099\u4efd\u5fc5\u9808\u6307\u5b9a\u4e0b\u5217\u5176\u4e2d\u4e00\u500b\u57fa\u5e95\u5099\u4efd ID: %s ERR_JEB_CANNOT_CREATE_BACKUP_TAG_FILE_77=\u7121\u6cd5\u5728 %2$s \u4e2d\u5efa\u7acb\u5099\u4efd\u6a19\u8a18\u6a94\u6848 %1$s ERR_JEB_BACKUP_CANNOT_RESTORE_78=\u5617\u8a66\u5f9e\u5099\u4efd %s \u5fa9\u539f\u6a94\u6848\u6642\u767c\u751f\u932f\u8aa4: %s ERR_JEB_BACKUP_MISSING_BACKUPID_79=\u5728\u5099\u4efd\u76ee\u9304 %2$s \u4e2d\u627e\u4e0d\u5230\u5099\u4efd %1$s \u7684\u8cc7\u8a0a NOTE_JEB_BACKUP_FILE_UNCHANGED_82=\u672a\u8b8a\u66f4: %s NOTE_JEB_BACKUP_CLEANER_ACTIVITY_83=\u56e0\u6e05\u9664\u7a0b\u5f0f\u6d3b\u52d5\u800c\u5305\u542b %s \u500b\u984d\u5916\u7684\u8a18\u9304\u6a94 NOTE_JEB_BACKUP_VERIFY_FILE_84=\u6b63\u5728\u9a57\u8b49: %s opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/logger.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/log.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=LOG #global.category=LOG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/logger_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/log_de.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=LOG #global.category=LOG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/logger_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/log_es.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=LOG #global.category=LOG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/logger_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/log_fr.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=LOG #global.category=LOG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/logger_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/log_ja.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=LOG #global.category=LOG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/logger_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/log_ko.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=LOG #global.category=LOG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/logger_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/log_zh_CN.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=LOG #global.category=LOG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/logger_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/log_zh_TW.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=LOG #global.category=LOG # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/plugin.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/plugin.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=PLUGIN #global.category=PLUGIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/plugin_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/plugin_de.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=PLUGIN #global.category=PLUGIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/plugin_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/plugin_es.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=PLUGIN #global.category=PLUGIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/plugin_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/plugin_fr.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=PLUGIN #global.category=PLUGIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/plugin_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/plugin_ja.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=PLUGIN #global.category=PLUGIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/plugin_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/plugin_ko.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=PLUGIN #global.category=PLUGIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/plugin_pl.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/plugin_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/plugin_zh_CN.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=PLUGIN #global.category=PLUGIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/plugin_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/plugin_zh_TW.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=PLUGIN #global.category=PLUGIN # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/protocol.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/protocol.properties @@ -28,7 +28,7 @@ # # Global directives # global.category=PROTOCOL #global.category=PROTOCOL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/protocol_ca_ES.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/protocol_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/protocol_de.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=PROTOCOL #global.category=PROTOCOL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/protocol_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/protocol_es.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=PROTOCOL #global.category=PROTOCOL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/protocol_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/protocol_fr.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=PROTOCOL #global.category=PROTOCOL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/protocol_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/protocol_ja.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=PROTOCOL #global.category=PROTOCOL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/protocol_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/protocol_ko.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=PROTOCOL #global.category=PROTOCOL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/protocol_pl.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/protocol_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/protocol_zh_CN.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=PROTOCOL #global.category=PROTOCOL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/protocol_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/protocol_zh_TW.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=PROTOCOL #global.category=PROTOCOL # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/quickSetup.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/quicksetup.properties @@ -28,9 +28,9 @@ # Global directives # Do not translate # global.category=QUICKSETUP global.ordinal=-1 global.use.message.jar.if.webstart=true #global.category=QUICKSETUP ##global.ordinal=-1 #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/quickSetup_ca_ES.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/quicksetup_ca_ES.properties @@ -28,9 +28,9 @@ # Global directives # Do not translate # global.category=QUICKSETUP global.ordinal=-1 global.use.message.jar.if.webstart=true #global.category=QUICKSETUP ##global.ordinal=-1 #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/quickSetup_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/quicksetup_de.properties @@ -28,9 +28,9 @@ # Global directives # Do not translate # global.category=QUICKSETUP global.ordinal=-1 global.use.message.jar.if.webstart=true #global.category=QUICKSETUP ##global.ordinal=-1 #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/quickSetup_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/quicksetup_es.properties @@ -28,9 +28,9 @@ # Global directives # Do not translate # global.category=QUICKSETUP global.ordinal=-1 global.use.message.jar.if.webstart=true #global.category=QUICKSETUP ##global.ordinal=-1 #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/quickSetup_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/quicksetup_fr.properties @@ -28,9 +28,9 @@ # Global directives # Do not translate # global.category=QUICKSETUP global.ordinal=-1 global.use.message.jar.if.webstart=true #global.category=QUICKSETUP ##global.ordinal=-1 #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/quickSetup_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/quicksetup_ja.properties @@ -28,9 +28,9 @@ # Global directives # Do not translate # global.category=QUICKSETUP global.ordinal=-1 global.use.message.jar.if.webstart=true #global.category=QUICKSETUP ##global.ordinal=-1 #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/quickSetup_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/quicksetup_ko.properties @@ -28,9 +28,9 @@ # Global directives # Do not translate # global.category=QUICKSETUP global.ordinal=-1 global.use.message.jar.if.webstart=true #global.category=QUICKSETUP ##global.ordinal=-1 #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/quickSetup_pl.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/quicksetup_pl.properties @@ -28,9 +28,9 @@ # Global directives # Do not translate # global.category=QUICKSETUP global.ordinal=-1 global.use.message.jar.if.webstart=true #global.category=QUICKSETUP ##global.ordinal=-1 #global.use.message.jar.if.webstart=true # INFO_CERTIFICATE_DIALOG_DO_NOT_ACCEPT_BUTTON_LABEL=Nie Akceptuj opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/quickSetup_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/quicksetup_zh_CN.properties @@ -28,9 +28,9 @@ # Global directives # Do not translate # global.category=QUICKSETUP global.ordinal=-1 global.use.message.jar.if.webstart=true #global.category=QUICKSETUP ##global.ordinal=-1 #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/quickSetup_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/quicksetup_zh_TW.properties @@ -29,9 +29,9 @@ # Global directives # Do not translate # global.category=QUICKSETUP global.ordinal=-1 global.use.message.jar.if.webstart=true #global.category=QUICKSETUP ##global.ordinal=-1 #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/replication.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/replication.properties @@ -32,7 +32,7 @@ # # Global directives # global.category=SYNC #global.category=SYNC # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/replication_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/replication_de.properties @@ -32,7 +32,7 @@ # # Global directives # global.category=SYNC #global.category=SYNC # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/replication_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/replication_es.properties @@ -32,7 +32,7 @@ # # Global directives # global.category=SYNC #global.category=SYNC # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/replication_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/replication_fr.properties @@ -32,7 +32,7 @@ # # Global directives # global.category=SYNC #global.category=SYNC # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/replication_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/replication_ja.properties @@ -32,7 +32,7 @@ # # Global directives # global.category=SYNC #global.category=SYNC # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/replication_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/replication_ko.properties @@ -32,7 +32,7 @@ # # Global directives # global.category=SYNC #global.category=SYNC # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/replication_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/replication_zh_CN.properties @@ -32,7 +32,7 @@ # # Global directives # global.category=SYNC #global.category=SYNC # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/replication_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/replication_zh_TW.properties @@ -32,7 +32,7 @@ # # Global directives # global.category=SYNC #global.category=SYNC # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/runtime.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/runtime_information.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=RUNTIME_INFORMATION #global.category=RUNTIME_INFORMATION # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/runtime_ca_ES.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/runtime_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/runtime_information_de.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=RUNTIME_INFORMATION #global.category=RUNTIME_INFORMATION # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/runtime_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/runtime_information_es.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=RUNTIME_INFORMATION #global.category=RUNTIME_INFORMATION # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/runtime_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/runtime_information_fr.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=RUNTIME_INFORMATION #global.category=RUNTIME_INFORMATION # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/runtime_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/runtime_information_ja.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=RUNTIME_INFORMATION #global.category=RUNTIME_INFORMATION # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/runtime_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/runtime_information_ko.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=RUNTIME_INFORMATION #global.category=RUNTIME_INFORMATION # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/runtime_pl.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/runtime_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/runtime_information_zh_CN.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=RUNTIME_INFORMATION #global.category=RUNTIME_INFORMATION # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/runtime_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/runtime_information_zh_TW.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=RUNTIME_INFORMATION #global.category=RUNTIME_INFORMATION # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/schema.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/schema.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=SCHEMA #global.category=SCHEMA # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/schema_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/schema_de.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=SCHEMA #global.category=SCHEMA # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/schema_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/schema_es.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=SCHEMA #global.category=SCHEMA # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/schema_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/schema_fr.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=SCHEMA #global.category=SCHEMA # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/schema_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/schema_ja.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=SCHEMA #global.category=SCHEMA # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/schema_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/schema_ko.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=SCHEMA #global.category=SCHEMA # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/schema_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/schema_zh_CN.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=SCHEMA #global.category=SCHEMA # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/schema_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/schema_zh_TW.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=SCHEMA #global.category=SCHEMA # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/task.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/task.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=TASK #global.category=TASK # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/task_ca_ES.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/task_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/task_de.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=TASK #global.category=TASK # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/task_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/task_es.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=TASK #global.category=TASK # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/task_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/task_fr.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=TASK #global.category=TASK # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/task_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/task_ja.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=TASK #global.category=TASK # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/task_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/task_ko.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=TASK #global.category=TASK # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/task_pl.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/task_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/task_zh_CN.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=TASK #global.category=TASK # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/task_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/task_zh_TW.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=TASK #global.category=TASK # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/tool.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/tools.properties @@ -20,14 +20,14 @@ # CDDL HEADER END # # Copyright 2006-2010 Sun Microsystems, Inc. # Portions Copyright 2011-2015 ForgeRock AS # Portions Copyright 2011-2014 ForgeRock AS # # Global directives # global.category=TOOLS #global.category=TOOLS # # Format string definitions @@ -1849,9 +1849,7 @@ their appropriate types ERR_DBTEST_DECODE_FAIL_1335=An error occurred while decoding data: %s INFO_DESCRIPTION_DBTEST_SUBCMD_LIST_INDEX_STATUS_1336=List the status of \ indexes in an entry container. \ This subcommand can take a long time to complete, \ as it reads all indexes for all backends indexes in an entry container INFO_DESCRIPTION_DBTEST_MAX_KEY_VALUE_1337=Only show records with keys that \ should be ordered before the provided value using the comparator for the \ database container opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/tool_ca_ES.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/tool_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/tools_de.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=TOOLS #global.category=TOOLS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/tool_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/tools_es.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=TOOLS #global.category=TOOLS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/tool_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/tools_fr.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=TOOLS #global.category=TOOLS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/tool_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/tools_ja.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=TOOLS #global.category=TOOLS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/tool_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/tools_ko.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=TOOLS #global.category=TOOLS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/tool_pl.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/tool_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/tools_zh_CN.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=TOOLS #global.category=TOOLS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/tool_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/tools_zh_TW.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=TOOLS #global.category=TOOLS # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/utility.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/utility.properties @@ -27,8 +27,8 @@ # # Global directives # global.category=UTIL global.use.message.jar.if.webstart=true #global.category=UTIL #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/utility_ca_ES.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/utility_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/utility_de.properties @@ -26,8 +26,8 @@ # # Global directives # global.category=UTIL global.use.message.jar.if.webstart=true #global.category=UTIL #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/utility_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/utility_es.properties @@ -26,8 +26,8 @@ # # Global directives # global.category=UTIL global.use.message.jar.if.webstart=true #global.category=UTIL #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/utility_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/utility_fr.properties @@ -26,8 +26,8 @@ # # Global directives # global.category=UTIL global.use.message.jar.if.webstart=true #global.category=UTIL #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/utility_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/utility_ja.properties @@ -27,8 +27,8 @@ # # Global directives # global.category=UTIL global.use.message.jar.if.webstart=true #global.category=UTIL #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/utility_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/utility_ko.properties @@ -27,8 +27,8 @@ # # Global directives # global.category=UTIL global.use.message.jar.if.webstart=true #global.category=UTIL #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/utility_pl.properties
opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/utility_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/utility_zh_CN.properties @@ -27,8 +27,8 @@ # # Global directives # global.category=UTIL global.use.message.jar.if.webstart=true #global.category=UTIL #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/utility_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/utility_zh_TW.properties @@ -27,8 +27,8 @@ # # Global directives # global.category=UTIL global.use.message.jar.if.webstart=true #global.category=UTIL #global.use.message.jar.if.webstart=true # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/version.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/version.properties @@ -27,7 +27,7 @@ # # Global directives # global.category=VERSION #global.category=VERSION # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/version_de.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/version_de.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=VERSION #global.category=VERSION # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/version_es.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/version_es.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=VERSION #global.category=VERSION # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/version_fr.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/version_fr.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=VERSION #global.category=VERSION # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/version_ja.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/version_ja.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=VERSION #global.category=VERSION # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/version_ko.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/version_ko.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=VERSION #global.category=VERSION # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/version_zh_CN.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/version_zh_CN.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=VERSION #global.category=VERSION # # Format string definitions opendj-sdk/opendj3-server-dev/src/messages/org/opends/messages/version_zh_TW.properties
File was renamed from opendj-sdk/opendj3-server-dev/src/messages/messages/version_zh_TW.properties @@ -26,7 +26,7 @@ # # Global directives # global.category=VERSION #global.category=VERSION # # Format string definitions opendj-sdk/opendj3-server-dev/src/server/org/opends/server/types/PublicAPI.java
@@ -22,7 +22,7 @@ * * * Copyright 2008 Sun Microsystems, Inc. * Portions Copyright 2012-2014 ForgeRock AS * Portions Copyright 2012-2015 ForgeRock AS */ package org.opends.server.types; @@ -90,7 +90,7 @@ /** * Retrieves the stability level for the associated class or method. * * @return The stability level for the associated class or method. * return The stability level for the associated class or method. */ StabilityLevel stability() default StabilityLevel.PRIVATE; @@ -106,7 +106,7 @@ * obtained elsewhere (e.g., provided as an argument to a method * overridden by the third-party code). * * @return {@code true} if third-party code should be allowed to * return {@code true} if third-party code should be allowed to * create new instances of the associated object type, or * {@code false} if not. */ @@ -122,7 +122,7 @@ * may be extended by internal code but should not be extended by * classes outside the OpenDS code base. * * @return {@code true} if the associated class/interface/method * return {@code true} if the associated class/interface/method * may be extended by third-party code, or {@code false} if * not. */ @@ -134,7 +134,7 @@ * Indicates whether the associated method may be invoked by * third-party code. * * @return {@code true} if third-party code should be allowed to * return {@code true} if third-party code should be allowed to * invoke the associated method, or {@code false} if not. */ boolean mayInvoke() default false; @@ -146,7 +146,7 @@ * be taken into consideration by third-party developers that may be * interested in using the associated code. * * @return A string that may contain additional notes that should * return A string that may contain additional notes that should * be taken into consideration by third-party developers * that may be interested in using the associated code. */ opendj-sdk/opendj3-server-dev/src/server/org/opends/server/types/SubtreeSpecification.java
@@ -22,7 +22,7 @@ * * * Copyright 2006-2010 Sun Microsystems, Inc. * Portions Copyright 2011-2014 ForgeRock AS * Portions Copyright 2011-2015 ForgeRock AS */ package org.opends.server.types; @@ -1282,23 +1282,23 @@ * @param rootDN * The root DN of the subtree. * @param relativeBaseDN * The relative base DN (or <code>null</code> if not * The relative base DN (or {@code null} if not * specified). * @param minimumDepth * The minimum depth (<=0 means unlimited). * The minimum depth (less than or equal to 0 means unlimited). * @param maximumDepth * The maximum depth (<0 means unlimited). * The maximum depth (less than 0 means unlimited). * @param chopBefore * The set of chop before local names (relative to the * relative base DN), or <code>null</code> if there are * relative base DN), or {@code null} if there are * none. * @param chopAfter * The set of chop after local names (relative to the * relative base DN), or <code>null</code> if there are * relative base DN), or {@code null} if there are * none. * @param refinements * The optional specification filter refinements, or * <code>null</code> if there are none. * {@code null} if there are none. */ public SubtreeSpecification(final DN rootDN, final DN relativeBaseDN, final int minimumDepth, @@ -1439,7 +1439,7 @@ /** * Get the maximum depth of the subtree specification. * * @return Returns the maximum depth (<0 indicates unlimited depth). * @return Returns the maximum depth (less than 0 indicates unlimited depth). */ public int getMaximumDepth() { opendj-sdk/opendj3-server-dev/tests/unit-tests-testng/src/server/org/opends/server/DirectoryServerTestCase.java
@@ -32,6 +32,7 @@ import org.testng.annotations.Test; import org.testng.annotations.AfterClass; import org.forgerock.i18n.LocalizableMessage; import org.forgerock.testng.ForgeRockTestCase; import org.opends.server.replication.ReplicationTestCase; import java.util.ArrayList; @@ -51,7 +52,7 @@ */ @Test(sequential=true) @SuppressWarnings("javadoc") public abstract class DirectoryServerTestCase { public abstract class DirectoryServerTestCase extends ForgeRockTestCase { @BeforeSuite public final void suppressOutput() { @@ -113,7 +114,7 @@ * since we might need these again. */ @AfterClass(alwaysRun = true) public void clearSuccessfulTestParams() { public void clearSuccessfulTestParams2() { Set<Object[]> paramsSet = successfulTestParams.keySet(); if (paramsSet == null) { // Can this ever happen? return; @@ -139,7 +140,7 @@ * all of the subclass methods, so this isn't too dangerous. */ @AfterClass(alwaysRun = true) public void nullMemberVariablesAfterTest() { public void nullMemberVariablesAfterTest2() { Class<?> cls = this.getClass(); // Iterate through all of the fields in all subclasses of // DirectoryServerTestCase, but not DirectoryServerTestCase itself. opendj-sdk/opendj3-server-dev/tests/unit-tests-testng/src/server/org/opends/server/MemoryReductionTestCases.java
@@ -45,7 +45,7 @@ */ @Test public void testNullMemberVariablesAfterTest() { nullMemberVariablesAfterTest(); nullMemberVariablesAfterTest2(); Assert.assertNull(normalMemberStr); Assert.assertNull(normalMemberObj); @@ -66,7 +66,7 @@ addParamsFromFailedTest(successfulAndFailed); addParamsFromFailedTest(failedOnly); clearSuccessfulTestParams(); clearSuccessfulTestParams2(); Assert.assertEquals(successfulOnly, new String[]{null, null}); Assert.assertEquals(successfulAndFailed, new String[]{"", ""}); opendj-sdk/opendj3-server-dev/tests/unit-tests-testng/src/server/org/opends/server/SuiteRunner.java
@@ -40,7 +40,7 @@ } catch (Throwable e) { originalSystemErr.println("TestNG.main threw an expected exception:"); e.printStackTrace(originalSystemErr); System.exit(TestNG.HAS_FAILURE); System.exit(1); } } } opendj-sdk/opendj3-server-dev/tests/unit-tests-testng/src/server/org/opends/server/TestCaseUtils.java
@@ -286,9 +286,13 @@ testInstallRoot = new File(unitRoot, "package"); testInstanceRoot = testInstallRoot; } System.out.println("unitRoot=" + unitRoot); System.out.println("testInstallRoot=" + testInstallRoot); System.out.println("testInstanceRoot=" + testInstanceRoot); File testSrcRoot = new File(buildRoot + File.separator + "tests" + File.separator + "unit-tests-testng"); System.out.println("testSrcRoot=" + testSrcRoot); String cleanupRequiredString = System.getProperty(PROPERTY_CLEANUP_REQUIRED, "true"); boolean cleanupRequired = !"false".equalsIgnoreCase(cleanupRequiredString); @@ -327,7 +331,9 @@ // appropriate place under the test package. File serverClassesDir = new File(buildDir, "classes"); File unitClassesDir = new File(unitRoot, "classes"); File libDir = new File(buildRoot, "lib"); File libDir = new File(buildDirStr + "/package/opendj/lib"); File upgradeDir = new File(buildDirStr + "/package/opendj/template/config/upgrade"); System.out.println("libDir=" + libDir); File resourceDir = new File(buildRoot, "resource"); File testResourceDir = new File(testSrcRoot, "resource"); // Set the class variable @@ -367,6 +373,8 @@ copyDirectory(libDir, testLibDir); copyDirectory(new File(resourceDir, "bin"), testBinDir); copyDirectory(new File(resourceDir, "config"), testConfigDir ); // copy upgrade directory copyDirectory(upgradeDir, new File(testConfigDir, "upgrade")); copyDirectory(new File(resourceDir, "schema"), new File(testSchemaDir, "schema")); copyDirectory(new File(resourceDir, "MakeLDIF"), opendj-sdk/opendj3-server-dev/tests/unit-tests-testng/src/server/org/opends/server/TestListener.java
@@ -152,6 +152,11 @@ @Override public void generateReport(List<XmlSuite> xmlSuites, List<ISuite> suites, String outputDirectory) { File outputDir = new File(outputDirectory); if (!outputDir.exists()) { outputDir.mkdir(); } File reportFile = new File(outputDirectory, REPORT_FILE_NAME); writeReportToFile(reportFile); opendj-sdk/opendj3-server-dev/tests/unit-tests-testng/src/server/org/opends/server/admin/TestChildCfgDefn.properties
@@ -1,3 +1,27 @@ # CDDL HEADER START # # The contents of this file are subject to the terms of the # Common Development and Distribution License, Version 1.0 only # (the "License"). You may not use this file except in compliance # with the License. # # You can obtain a copy of the license at legal-notices/CDDLv1_0.txt # or http://forgerock.org/license/CDDLv1.0.html. # See the License for the specific language governing permissions # and limitations under the License. # # When distributing Covered Code, include this CDDL HEADER in each # file and include the License file at legal-notices/CDDLv1_0.txt. # If applicable, add the following below this CDDL HEADER, with the # fields enclosed by brackets "[]" replaced with your own identifying # information: # Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # Copyright 2007-2008 Sun Microsystems, Inc. # Portions Copyright 2015 ForgeRock AS user-friendly-name=Test Child user-friendly-plural-name=Test Children synopsis=A configuration for testing components that are subordinate to a parent component. It re-uses the virtual-attribute configuration LDAP profile. opendj-sdk/opendj3-server-dev/tests/unit-tests-testng/src/server/org/opends/server/admin/TestParentCfgDefn.properties
@@ -1,3 +1,27 @@ # CDDL HEADER START # # The contents of this file are subject to the terms of the # Common Development and Distribution License, Version 1.0 only # (the "License"). You may not use this file except in compliance # with the License. # # You can obtain a copy of the license at legal-notices/CDDLv1_0.txt # or http://forgerock.org/license/CDDLv1.0.html. # See the License for the specific language governing permissions # and limitations under the License. # # When distributing Covered Code, include this CDDL HEADER in each # file and include the License file at legal-notices/CDDLv1_0.txt. # If applicable, add the following below this CDDL HEADER, with the # fields enclosed by brackets "[]" replaced with your own identifying # information: # Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # Copyright 2007-2008 Sun Microsystems, Inc. # Portions Copyright 2015 ForgeRock AS user-friendly-name=Test Parent user-friendly-plural-name=Test Parents synopsis=A configuration for testing components that have child components. It re-uses the virtual-attribute configuration LDAP profile. opendj-sdk/opendj3-server-dev/tests/unit-tests-testng/src/server/org/opends/server/backends/jeb/TestBackendImpl.java
@@ -565,11 +565,23 @@ TestCaseUtils.disableBackend("importRoot"); } @Test(expectedExceptions = DirectoryException.class) // Note: this test has been rewritten to avoid expectedException in the test annotation because // it was skipping all tests that depends on this method @Test public void testAddNoParent() throws Exception { try { for (Entry entry : entries) { backend.addEntry(entry, null); } failBecauseExceptionWasNotThrown(DirectoryException.class); } catch (DirectoryException e) { // expected } } @Test(dependsOnMethods = "testAddNoParent") opendj-sdk/opendj3-server-dev/tests/unit-tests-testng/src/server/org/opends/server/backends/pluggable/PluggableBackendImplTestCase.java
@@ -534,8 +534,11 @@ { try { if (backupDirectory != null) { backend.removeBackup(backupDirectory, backupID); } } catch (DirectoryException ignore) { /* opendj-sdk/opendj3-server-dev/tests/unit-tests-testng/src/server/org/opends/server/util/TestStaticUtils.java
@@ -920,7 +920,7 @@ * * @throws Exception If the test failed unexpectedly. */ @Test(groups={"windows"}, expectedExceptions=IOException.class) @Test(enabled=false, groups={"windows"}, expectedExceptions=IOException.class) public void testRenameFileLockedTarget() throws Exception { File src = File.createTempFile("src", null); File target = File.createTempFile("target", null);