< prev index next >

test/com/sun/jndi/ldap/LdapTimeoutTest.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @run main/othervm LdapTimeoutTest
  27  * @bug 7094377 8000487 6176036 7056489
  28  * @summary Timeout tests for ldap

  29  */
  30 
  31 import java.net.Socket;
  32 import java.net.ServerSocket;
  33 import java.net.SocketTimeoutException;
  34 import java.io.*;
  35 import javax.naming.*;
  36 import javax.naming.directory.*;
  37 import java.util.List;
  38 import java.util.Hashtable;
  39 import java.util.ArrayList;
  40 import java.util.concurrent.Callable;
  41 import java.util.concurrent.ExecutionException;
  42 import java.util.concurrent.Executors;
  43 import java.util.concurrent.ExecutorService;
  44 import java.util.concurrent.Future;
  45 import java.util.concurrent.ScheduledExecutorService;
  46 import java.util.concurrent.ScheduledFuture;
  47 import java.util.concurrent.TimeoutException;
  48 import java.util.concurrent.TimeUnit;




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @run main/othervm LdapTimeoutTest
  27  * @bug 7094377 8000487 6176036 7056489
  28  * @summary Timeout tests for ldap
  29  * @key intermittent
  30  */
  31 
  32 import java.net.Socket;
  33 import java.net.ServerSocket;
  34 import java.net.SocketTimeoutException;
  35 import java.io.*;
  36 import javax.naming.*;
  37 import javax.naming.directory.*;
  38 import java.util.List;
  39 import java.util.Hashtable;
  40 import java.util.ArrayList;
  41 import java.util.concurrent.Callable;
  42 import java.util.concurrent.ExecutionException;
  43 import java.util.concurrent.Executors;
  44 import java.util.concurrent.ExecutorService;
  45 import java.util.concurrent.Future;
  46 import java.util.concurrent.ScheduledExecutorService;
  47 import java.util.concurrent.ScheduledFuture;
  48 import java.util.concurrent.TimeoutException;
  49 import java.util.concurrent.TimeUnit;


< prev index next >