F.java revision 3294:9adfb22ff08f
12226Schegar/*
22362Sohair * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
32226Schegar * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
42226Schegar *
52226Schegar * This code is free software; you can redistribute it and/or modify it
62226Schegar * under the terms of the GNU General Public License version 2 only, as
72226Schegar * published by the Free Software Foundation.
82226Schegar *
92226Schegar * This code is distributed in the hope that it will be useful, but WITHOUT
102226Schegar * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
112226Schegar * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
122226Schegar * version 2 for more details (a copy is included in the LICENSE file that
132226Schegar * accompanied this code).
142226Schegar *
152226Schegar * You should have received a copy of the GNU General Public License version
162226Schegar * 2 along with this work; if not, write to the Free Software Foundation,
172226Schegar * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
182226Schegar *
192362Sohair * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202362Sohair * or visit www.oracle.com if you need additional information or have any
212362Sohair * questions.
222226Schegar */
232226Schegar
242226Schegarpackage f;
252226Schegar
262226Schegarimport sun.security.x509.X509CertInfo;
272226Schegar
282226Schegarpublic class F {
292226Schegar    private final X509CertInfo cert;
302226Schegar    public F() {
312226Schegar        // jdk internal API
322226Schegar        cert = new X509CertInfo();
332226Schegar    }
342226Schegar}
352226Schegar