src/java.base/share/classes/com/sun/net/ssl/internal/ssl/Provider.java
branchmetal-prototype-branch
changeset 57247 48f2dc62ba77
parent 57243 8c3a74033daf
parent 54029 4ff6c8365b69
child 57251 86ed45a9dedb
equal deleted inserted replaced
57243:8c3a74033daf 57247:48f2dc62ba77
     1 /*
       
     2  * Copyright (c) 2007, 2019, Oracle and/or its affiliates. All rights reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.  Oracle designates this
       
     8  * particular file as subject to the "Classpath" exception as provided
       
     9  * by Oracle in the LICENSE file that accompanied this code.
       
    10  *
       
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    14  * version 2 for more details (a copy is included in the LICENSE file that
       
    15  * accompanied this code).
       
    16  *
       
    17  * You should have received a copy of the GNU General Public License version
       
    18  * 2 along with this work; if not, write to the Free Software Foundation,
       
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    20  *
       
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    22  * or visit www.oracle.com if you need additional information or have any
       
    23  * questions.
       
    24  */
       
    25 
       
    26 package com.sun.net.ssl.internal.ssl;
       
    27 
       
    28 import sun.security.ssl.SunJSSE;
       
    29 
       
    30 /**
       
    31  * Main class for the SunJSSE provider. The actual code was moved to the
       
    32  * class sun.security.ssl.SunJSSE, but for backward compatibility we
       
    33  * continue to use this class as the main Provider class.
       
    34  */
       
    35 @Deprecated(since="9")
       
    36 public final class Provider extends SunJSSE {
       
    37 
       
    38     private static final long serialVersionUID = 3231825739635378733L;
       
    39 
       
    40     // standard constructor
       
    41     public Provider() {
       
    42         super();
       
    43     }
       
    44 
       
    45     /**
       
    46      * Installs the JSSE provider.
       
    47      */
       
    48     public static synchronized void install() {
       
    49         /* nop. Remove this method in the future. */
       
    50     }
       
    51 
       
    52 }