| | |
| | | import org.forgerock.opendj.ldap.schema.SchemaBuilder; |
| | | import org.forgerock.opendj.ldap.schema.Syntax; |
| | | import org.forgerock.util.Reject; |
| | | import org.forgerock.util.Utils; |
| | | import org.opends.server.admin.AdministrationConnector; |
| | | import org.opends.server.admin.AdministrationDataSync; |
| | | import org.opends.server.admin.ClassLoaderProvider; |
| | |
| | | import org.opends.server.util.RuntimeInformation; |
| | | import org.opends.server.util.SetupUtils; |
| | | import org.opends.server.util.TimeThread; |
| | | import org.opends.server.util.VersionCompatibilityIssue; |
| | | import org.opends.server.workflowelement.localbackend.LocalBackendWorkflowElement; |
| | | |
| | | import com.forgerock.opendj.cli.ArgumentConstants; |
| | |
| | | * @see Class#forName(String, boolean, ClassLoader) |
| | | */ |
| | | public static Class<?> loadClass(String name) throws LinkageError, |
| | | ExceptionInInitializerError, ClassNotFoundException |
| | | ExceptionInInitializerError, ClassNotFoundException |
| | | { |
| | | return Class.forName(name, true, DirectoryServer.getClassLoader()); |
| | | } |
| | |
| | | System.out.println(SetupUtils.BUILD_JVM_VERSION+separator+ |
| | | BUILD_JVM_VERSION); |
| | | System.out.println(SetupUtils.BUILD_JVM_VENDOR+separator+BUILD_JVM_VENDOR); |
| | | System.out.println(SetupUtils.INCOMPATIBILITY_EVENTS+separator+ |
| | | Utils.joinAsString(",", VersionCompatibilityIssue.getAllEvents())); |
| | | |
| | | // Print extensions' extra information |
| | | String extensionInformation = |