1 /* 2 * Copyright (c) 2002, 2011, 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 30 @SuppressWarnings({"unchecked", "deprecation", "all"}) 31 public class CRLDistributionPointsExtension extends sun.security.x509.Extension 32 implements sun.security.x509.CertAttrSet<java.lang.String> { 33 CRLDistributionPointsExtension( java.util.List<sun.security.x509.DistributionPoint> distributionPoints)34 public CRLDistributionPointsExtension( 35 java.util.List<sun.security.x509.DistributionPoint> distributionPoints) 36 throws java.io.IOException { 37 throw new RuntimeException("Stub!"); 38 } 39 CRLDistributionPointsExtension( boolean isCritical, java.util.List<sun.security.x509.DistributionPoint> distributionPoints)40 public CRLDistributionPointsExtension( 41 boolean isCritical, 42 java.util.List<sun.security.x509.DistributionPoint> distributionPoints) 43 throws java.io.IOException { 44 throw new RuntimeException("Stub!"); 45 } 46 CRLDistributionPointsExtension( sun.security.util.ObjectIdentifier extensionId, boolean isCritical, java.util.List<sun.security.x509.DistributionPoint> distributionPoints, java.lang.String extensionName)47 protected CRLDistributionPointsExtension( 48 sun.security.util.ObjectIdentifier extensionId, 49 boolean isCritical, 50 java.util.List<sun.security.x509.DistributionPoint> distributionPoints, 51 java.lang.String extensionName) 52 throws java.io.IOException { 53 throw new RuntimeException("Stub!"); 54 } 55 CRLDistributionPointsExtension(java.lang.Boolean critical, java.lang.Object value)56 public CRLDistributionPointsExtension(java.lang.Boolean critical, java.lang.Object value) 57 throws java.io.IOException { 58 throw new RuntimeException("Stub!"); 59 } 60 CRLDistributionPointsExtension( sun.security.util.ObjectIdentifier extensionId, java.lang.Boolean critical, java.lang.Object value, java.lang.String extensionName)61 protected CRLDistributionPointsExtension( 62 sun.security.util.ObjectIdentifier extensionId, 63 java.lang.Boolean critical, 64 java.lang.Object value, 65 java.lang.String extensionName) 66 throws java.io.IOException { 67 throw new RuntimeException("Stub!"); 68 } 69 getName()70 public java.lang.String getName() { 71 throw new RuntimeException("Stub!"); 72 } 73 encode(java.io.OutputStream out)74 public void encode(java.io.OutputStream out) throws java.io.IOException { 75 throw new RuntimeException("Stub!"); 76 } 77 encode( java.io.OutputStream out, sun.security.util.ObjectIdentifier extensionId, boolean isCritical)78 protected void encode( 79 java.io.OutputStream out, 80 sun.security.util.ObjectIdentifier extensionId, 81 boolean isCritical) 82 throws java.io.IOException { 83 throw new RuntimeException("Stub!"); 84 } 85 set(java.lang.String name, java.lang.Object obj)86 public void set(java.lang.String name, java.lang.Object obj) throws java.io.IOException { 87 throw new RuntimeException("Stub!"); 88 } 89 get(java.lang.String name)90 public java.util.List<sun.security.x509.DistributionPoint> get(java.lang.String name) 91 throws java.io.IOException { 92 throw new RuntimeException("Stub!"); 93 } 94 delete(java.lang.String name)95 public void delete(java.lang.String name) throws java.io.IOException { 96 throw new RuntimeException("Stub!"); 97 } 98 getElements()99 public java.util.Enumeration<java.lang.String> getElements() { 100 throw new RuntimeException("Stub!"); 101 } 102 103 @dalvik.annotation.compat.UnsupportedAppUsage encodeThis()104 private void encodeThis() throws java.io.IOException { 105 throw new RuntimeException("Stub!"); 106 } 107 toString()108 public java.lang.String toString() { 109 throw new RuntimeException("Stub!"); 110 } 111 112 public static final java.lang.String IDENT = "x509.info.extensions.CRLDistributionPoints"; 113 114 public static final java.lang.String NAME = "CRLDistributionPoints"; 115 116 public static final java.lang.String POINTS = "points"; 117 118 private java.util.List<sun.security.x509.DistributionPoint> distributionPoints; 119 120 private java.lang.String extensionName; 121 } 122