• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 1997, 2004, 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 sun.security.util.*;
29 
30 @SuppressWarnings({"unchecked", "deprecation", "all"})
31 public class GeneralName {
32 
33     @dalvik.annotation.compat.UnsupportedAppUsage
GeneralName(sun.security.x509.GeneralNameInterface name)34     public GeneralName(sun.security.x509.GeneralNameInterface name) {
35         throw new RuntimeException("Stub!");
36     }
37 
GeneralName(sun.security.util.DerValue encName)38     public GeneralName(sun.security.util.DerValue encName) throws java.io.IOException {
39         throw new RuntimeException("Stub!");
40     }
41 
GeneralName(sun.security.util.DerValue encName, boolean nameConstraint)42     public GeneralName(sun.security.util.DerValue encName, boolean nameConstraint)
43             throws java.io.IOException {
44         throw new RuntimeException("Stub!");
45     }
46 
47     @dalvik.annotation.compat.UnsupportedAppUsage
getType()48     public int getType() {
49         throw new RuntimeException("Stub!");
50     }
51 
52     @dalvik.annotation.compat.UnsupportedAppUsage
getName()53     public sun.security.x509.GeneralNameInterface getName() {
54         throw new RuntimeException("Stub!");
55     }
56 
toString()57     public java.lang.String toString() {
58         throw new RuntimeException("Stub!");
59     }
60 
equals(java.lang.Object other)61     public boolean equals(java.lang.Object other) {
62         throw new RuntimeException("Stub!");
63     }
64 
hashCode()65     public int hashCode() {
66         throw new RuntimeException("Stub!");
67     }
68 
encode(sun.security.util.DerOutputStream out)69     public void encode(sun.security.util.DerOutputStream out) throws java.io.IOException {
70         throw new RuntimeException("Stub!");
71     }
72 
73     private sun.security.x509.GeneralNameInterface name;
74 }
75