1 /* 2 * Copyright (c) 1997, 2012, 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 sun.security.x509; 27 28 import java.util.*; 29 import sun.security.util.*; 30 31 @SuppressWarnings({"unchecked", "deprecation", "all"}) 32 public class X509CRLEntryImpl extends java.security.cert.X509CRLEntry 33 implements java.lang.Comparable<sun.security.x509.X509CRLEntryImpl> { 34 X509CRLEntryImpl(java.math.BigInteger num, java.util.Date date)35 public X509CRLEntryImpl(java.math.BigInteger num, java.util.Date date) { 36 throw new RuntimeException("Stub!"); 37 } 38 X509CRLEntryImpl( java.math.BigInteger num, java.util.Date date, sun.security.x509.CRLExtensions crlEntryExts)39 public X509CRLEntryImpl( 40 java.math.BigInteger num, 41 java.util.Date date, 42 sun.security.x509.CRLExtensions crlEntryExts) { 43 throw new RuntimeException("Stub!"); 44 } 45 X509CRLEntryImpl(byte[] revokedCert)46 public X509CRLEntryImpl(byte[] revokedCert) throws java.security.cert.CRLException { 47 throw new RuntimeException("Stub!"); 48 } 49 X509CRLEntryImpl(sun.security.util.DerValue derValue)50 public X509CRLEntryImpl(sun.security.util.DerValue derValue) 51 throws java.security.cert.CRLException { 52 throw new RuntimeException("Stub!"); 53 } 54 hasExtensions()55 public boolean hasExtensions() { 56 throw new RuntimeException("Stub!"); 57 } 58 encode(sun.security.util.DerOutputStream outStrm)59 public void encode(sun.security.util.DerOutputStream outStrm) 60 throws java.security.cert.CRLException { 61 throw new RuntimeException("Stub!"); 62 } 63 getEncoded()64 public byte[] getEncoded() throws java.security.cert.CRLException { 65 throw new RuntimeException("Stub!"); 66 } 67 getEncoded0()68 private byte[] getEncoded0() throws java.security.cert.CRLException { 69 throw new RuntimeException("Stub!"); 70 } 71 getCertificateIssuer()72 public javax.security.auth.x500.X500Principal getCertificateIssuer() { 73 throw new RuntimeException("Stub!"); 74 } 75 setCertificateIssuer( javax.security.auth.x500.X500Principal crlIssuer, javax.security.auth.x500.X500Principal certIssuer)76 void setCertificateIssuer( 77 javax.security.auth.x500.X500Principal crlIssuer, 78 javax.security.auth.x500.X500Principal certIssuer) { 79 throw new RuntimeException("Stub!"); 80 } 81 getSerialNumber()82 public java.math.BigInteger getSerialNumber() { 83 throw new RuntimeException("Stub!"); 84 } 85 getRevocationDate()86 public java.util.Date getRevocationDate() { 87 throw new RuntimeException("Stub!"); 88 } 89 getRevocationReason()90 public java.security.cert.CRLReason getRevocationReason() { 91 throw new RuntimeException("Stub!"); 92 } 93 getRevocationReason( java.security.cert.X509CRLEntry crlEntry)94 public static java.security.cert.CRLReason getRevocationReason( 95 java.security.cert.X509CRLEntry crlEntry) { 96 throw new RuntimeException("Stub!"); 97 } 98 getReasonCode()99 public java.lang.Integer getReasonCode() throws java.io.IOException { 100 throw new RuntimeException("Stub!"); 101 } 102 toString()103 public java.lang.String toString() { 104 throw new RuntimeException("Stub!"); 105 } 106 hasUnsupportedCriticalExtension()107 public boolean hasUnsupportedCriticalExtension() { 108 throw new RuntimeException("Stub!"); 109 } 110 getCriticalExtensionOIDs()111 public java.util.Set<java.lang.String> getCriticalExtensionOIDs() { 112 throw new RuntimeException("Stub!"); 113 } 114 getNonCriticalExtensionOIDs()115 public java.util.Set<java.lang.String> getNonCriticalExtensionOIDs() { 116 throw new RuntimeException("Stub!"); 117 } 118 getExtensionValue(java.lang.String oid)119 public byte[] getExtensionValue(java.lang.String oid) { 120 throw new RuntimeException("Stub!"); 121 } 122 123 @dalvik.annotation.compat.UnsupportedAppUsage getExtension(sun.security.util.ObjectIdentifier oid)124 public sun.security.x509.Extension getExtension(sun.security.util.ObjectIdentifier oid) { 125 throw new RuntimeException("Stub!"); 126 } 127 parse(sun.security.util.DerValue derVal)128 private void parse(sun.security.util.DerValue derVal) 129 throws java.security.cert.CRLException, java.io.IOException { 130 throw new RuntimeException("Stub!"); 131 } 132 toImpl(java.security.cert.X509CRLEntry entry)133 public static sun.security.x509.X509CRLEntryImpl toImpl(java.security.cert.X509CRLEntry entry) 134 throws java.security.cert.CRLException { 135 throw new RuntimeException("Stub!"); 136 } 137 getCertificateIssuerExtension()138 sun.security.x509.CertificateIssuerExtension getCertificateIssuerExtension() { 139 throw new RuntimeException("Stub!"); 140 } 141 getExtensions()142 public java.util.Map<java.lang.String, java.security.cert.Extension> getExtensions() { 143 throw new RuntimeException("Stub!"); 144 } 145 compareTo(sun.security.x509.X509CRLEntryImpl that)146 public int compareTo(sun.security.x509.X509CRLEntryImpl that) { 147 throw new RuntimeException("Stub!"); 148 } 149 150 private static final long YR_2050 = 2524636800000L; // 0x24bd0146400L 151 152 private javax.security.auth.x500.X500Principal certIssuer; 153 154 private sun.security.x509.CRLExtensions extensions; 155 156 private static final boolean isExplicit = false; 157 158 private java.util.Date revocationDate; 159 160 private byte[] revokedCert; 161 162 private sun.security.x509.SerialNumber serialNumber; 163 } 164