/*
* 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 Copyright [year] [name of copyright owner]".
*
* Copyright 2015 ForgeRock AS.
*/
package org.forgerock.opendj.examples;
import static org.forgerock.util.Utils.closeSilently;
import org.forgerock.i18n.LocalizableMessage;
import org.forgerock.opendj.ldap.Connection;
import org.forgerock.opendj.ldap.DN;
import org.forgerock.opendj.ldap.Entry;
import org.forgerock.opendj.ldap.LDAPConnectionFactory;
import org.forgerock.opendj.ldap.LdapException;
import org.forgerock.opendj.ldap.ResultCode;
import org.forgerock.opendj.ldap.requests.Requests;
import org.forgerock.opendj.ldap.responses.BindResult;
import org.forgerock.opendj.ldap.responses.Result;
import org.forgerock.opendj.ldap.schema.Schema;
import org.forgerock.opendj.ldap.schema.SchemaValidationPolicy;
import org.forgerock.opendj.ldif.LDIFEntryReader;
import org.forgerock.util.AsyncFunction;
import org.forgerock.util.promise.ExceptionHandler;
import org.forgerock.util.promise.Promise;
import org.forgerock.util.promise.Promises;
import org.forgerock.util.promise.ResultHandler;
import java.io.IOException;
import java.util.LinkedList;
import java.util.List;
import java.util.concurrent.CountDownLatch;
/**
* This example command-line client application validates an entry
* against the directory server schema before adding it
* using the asynchronous APIs.
*
*
*
* This example takes the following command line parameters:
*
*
* {@code }
*
*
* Then it reads an entry to add from System.in.
* If the entry is valid according to the directory schema,
* it tries to add the entry to the directory.
*/
public final class UseSchemaAsync {
/** Connection to the LDAP server. */
private static Connection connection;
/** Result for the operation. */
private static int resultCode;
/** Count down latch to wait for modify operation to complete. */
private static final CountDownLatch COMPLETION_LATCH = new CountDownLatch(1);
/**
* Main method.
*
* @param args
* The command line arguments: host, port, bindDN, bindPassword.
*/
public static void main(final String[] args) {
if (args.length != 4) {
System.err.println("Usage: host port bindDN bindPassword");
System.exit(1);
}
// Parse command line arguments.
final String host = args[0];
final int port = Integer.parseInt(args[1]);
final String bindDn = args[2];
final char[] bindPassword = args[3].toCharArray();
// Read an entry from System.in.
final Entry entry;
try {
System.out.println("Enter entry to add in LDIF format:");
entry = new LDIFEntryReader(System.in).readEntry();
} catch (IOException e) {
System.err.println(e.getMessage());
System.exit(ResultCode.CLIENT_SIDE_LOCAL_ERROR.intValue());
return;
}
final String entryDn = entry.getName().toString();
// Connect, bind, read schema, and add entry if valid according to schema.
new LDAPConnectionFactory(host, port)
.getConnectionAsync()
.thenAsync(new AsyncFunction