1 /*
2  * Copyright (C) 2014 The Android Open Source Project
3  * Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved.
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This code is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License version 2 only, as
8  * published by the Free Software Foundation.  Oracle designates this
9  * particular file as subject to the "Classpath" exception as provided
10  * by Oracle in the LICENSE file that accompanied this code.
11  *
12  * This code is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15  * version 2 for more details (a copy is included in the LICENSE file that
16  * accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License version
19  * 2 along with this work; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
21  *
22  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
23  * or visit www.oracle.com if you need additional information or have any
24  * questions.
25  */
26 
27 package sun.security.x509;
28 
29 import java.util.*;
30 import sun.security.util.*;
31 
32 @SuppressWarnings({"unchecked", "deprecation", "all"})
33 public class RDN {
34 
RDN(java.lang.String name)35     public RDN(java.lang.String name) throws java.io.IOException {
36         throw new RuntimeException("Stub!");
37     }
38 
RDN(java.lang.String name, java.util.Map<java.lang.String, java.lang.String> keywordMap)39     public RDN(java.lang.String name, java.util.Map<java.lang.String, java.lang.String> keywordMap)
40             throws java.io.IOException {
41         throw new RuntimeException("Stub!");
42     }
43 
RDN(java.lang.String name, java.lang.String format)44     RDN(java.lang.String name, java.lang.String format) throws java.io.IOException {
45         throw new RuntimeException("Stub!");
46     }
47 
RDN( java.lang.String name, java.lang.String format, java.util.Map<java.lang.String, java.lang.String> keywordMap)48     RDN(
49             java.lang.String name,
50             java.lang.String format,
51             java.util.Map<java.lang.String, java.lang.String> keywordMap)
52             throws java.io.IOException {
53         throw new RuntimeException("Stub!");
54     }
55 
RDN(sun.security.util.DerValue rdn)56     RDN(sun.security.util.DerValue rdn) throws java.io.IOException {
57         throw new RuntimeException("Stub!");
58     }
59 
RDN(int i)60     RDN(int i) {
61         throw new RuntimeException("Stub!");
62     }
63 
RDN(sun.security.x509.AVA ava)64     public RDN(sun.security.x509.AVA ava) {
65         throw new RuntimeException("Stub!");
66     }
67 
RDN(sun.security.x509.AVA[] avas)68     public RDN(sun.security.x509.AVA[] avas) {
69         throw new RuntimeException("Stub!");
70     }
71 
avas()72     public java.util.List<sun.security.x509.AVA> avas() {
73         throw new RuntimeException("Stub!");
74     }
75 
size()76     public int size() {
77         throw new RuntimeException("Stub!");
78     }
79 
equals(java.lang.Object obj)80     public boolean equals(java.lang.Object obj) {
81         throw new RuntimeException("Stub!");
82     }
83 
hashCode()84     public int hashCode() {
85         throw new RuntimeException("Stub!");
86     }
87 
findAttribute(sun.security.util.ObjectIdentifier oid)88     sun.security.util.DerValue findAttribute(sun.security.util.ObjectIdentifier oid) {
89         throw new RuntimeException("Stub!");
90     }
91 
encode(sun.security.util.DerOutputStream out)92     void encode(sun.security.util.DerOutputStream out) throws java.io.IOException {
93         throw new RuntimeException("Stub!");
94     }
95 
toString()96     public java.lang.String toString() {
97         throw new RuntimeException("Stub!");
98     }
99 
toRFC1779String()100     public java.lang.String toRFC1779String() {
101         throw new RuntimeException("Stub!");
102     }
103 
toRFC1779String( java.util.Map<java.lang.String, java.lang.String> oidMap)104     public java.lang.String toRFC1779String(
105             java.util.Map<java.lang.String, java.lang.String> oidMap) {
106         throw new RuntimeException("Stub!");
107     }
108 
toRFC2253String()109     public java.lang.String toRFC2253String() {
110         throw new RuntimeException("Stub!");
111     }
112 
toRFC2253String( java.util.Map<java.lang.String, java.lang.String> oidMap)113     public java.lang.String toRFC2253String(
114             java.util.Map<java.lang.String, java.lang.String> oidMap) {
115         throw new RuntimeException("Stub!");
116     }
117 
toRFC2253String(boolean canonical)118     public java.lang.String toRFC2253String(boolean canonical) {
119         throw new RuntimeException("Stub!");
120     }
121 
toRFC2253StringInternal( boolean canonical, java.util.Map<java.lang.String, java.lang.String> oidMap)122     private java.lang.String toRFC2253StringInternal(
123             boolean canonical, java.util.Map<java.lang.String, java.lang.String> oidMap) {
124         throw new RuntimeException("Stub!");
125     }
126 
127     final sun.security.x509.AVA[] assertion;
128 
129     {
130         assertion = new sun.security.x509.AVA[0];
131     }
132 
133     private volatile java.util.List<sun.security.x509.AVA> avaList;
134 
135     private volatile java.lang.String canonicalString;
136 }
137