< prev index next >

test/jdk/java/net/httpclient/http2/TLSConnection.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 27,49 **** import java.io.OutputStream; import java.net.URI; import java.net.URISyntaxException; import jdk.incubator.http.HttpClient; import jdk.incubator.http.HttpRequest; ! import jdk.incubator.http.HttpResponse; import javax.net.ssl.SSLParameters; import javax.net.ssl.SSLSession; ! import static jdk.incubator.http.HttpRequest.BodyProcessor.fromString; import static jdk.incubator.http.HttpResponse.BodyHandler.asString; /* * @test * @bug 8150769 8157107 - * @key intermittent * @library server * @summary Checks that SSL parameters can be set for HTTP/2 connection ! * @modules jdk.incubator.httpclient/jdk.incubator.http.internal.common * jdk.incubator.httpclient/jdk.incubator.http.internal.frame * jdk.incubator.httpclient/jdk.incubator.http.internal.hpack * @run main/othervm TLSConnection */ public class TLSConnection { --- 27,49 ---- import java.io.OutputStream; import java.net.URI; import java.net.URISyntaxException; import jdk.incubator.http.HttpClient; import jdk.incubator.http.HttpRequest; ! import javax.net.ssl.SSLParameters; import javax.net.ssl.SSLSession; ! import static jdk.incubator.http.HttpRequest.BodyPublisher.fromString; import static jdk.incubator.http.HttpResponse.BodyHandler.asString; /* * @test * @bug 8150769 8157107 * @library server * @summary Checks that SSL parameters can be set for HTTP/2 connection ! * @modules java.base/sun.net.www.http ! * jdk.incubator.httpclient/jdk.incubator.http.internal.common * jdk.incubator.httpclient/jdk.incubator.http.internal.frame * jdk.incubator.httpclient/jdk.incubator.http.internal.hpack * @run main/othervm TLSConnection */ public class TLSConnection {
< prev index next >