• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2003, 2009, 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.security.cert.*;
29 import java.io.IOException;
30 
31 import sun.security.util.*;
32 
33 /**
34  * @author      Ram Marti
35  */
36 
37 public final class AccessDescription {
38 
39     private int myhash = -1;
40 
41     private ObjectIdentifier accessMethod;
42 
43     private GeneralName accessLocation;
44 
45     public static final ObjectIdentifier Ad_OCSP_Id =
46         ObjectIdentifier.newInternal(new int[] {1, 3, 6, 1, 5, 5, 7, 48, 1});
47 
48     public static final ObjectIdentifier Ad_CAISSUERS_Id =
49         ObjectIdentifier.newInternal(new int[] {1, 3, 6, 1, 5, 5, 7, 48, 2});
50 
51     public static final ObjectIdentifier Ad_TIMESTAMPING_Id =
52         ObjectIdentifier.newInternal(new int[] {1, 3, 6, 1, 5, 5, 7, 48, 3});
53 
54     public static final ObjectIdentifier Ad_CAREPOSITORY_Id =
55         ObjectIdentifier.newInternal(new int[] {1, 3, 6, 1, 5, 5, 7, 48, 5});
56 
AccessDescription(ObjectIdentifier accessMethod, GeneralName accessLocation)57     public AccessDescription(ObjectIdentifier accessMethod, GeneralName accessLocation) {
58         this.accessMethod = accessMethod;
59         this.accessLocation = accessLocation;
60     }
61 
AccessDescription(DerValue derValue)62     public AccessDescription(DerValue derValue) throws IOException {
63         DerInputStream derIn = derValue.getData();
64         accessMethod = derIn.getOID();
65         accessLocation = new GeneralName(derIn.getDerValue());
66     }
67 
getAccessMethod()68     public ObjectIdentifier getAccessMethod() {
69         return accessMethod;
70     }
71 
getAccessLocation()72     public GeneralName getAccessLocation() {
73         return accessLocation;
74     }
75 
encode(DerOutputStream out)76     public void encode(DerOutputStream out) throws IOException {
77         DerOutputStream tmp = new DerOutputStream();
78         tmp.putOID(accessMethod);
79         accessLocation.encode(tmp);
80         out.write(DerValue.tag_Sequence, tmp);
81     }
82 
hashCode()83     public int hashCode() {
84         if (myhash == -1) {
85             myhash = accessMethod.hashCode() + accessLocation.hashCode();
86         }
87         return myhash;
88     }
89 
equals(Object obj)90     public boolean equals(Object obj) {
91         if (obj == null || (!(obj instanceof AccessDescription))) {
92             return false;
93         }
94         AccessDescription that = (AccessDescription)obj;
95 
96         if (this == that) {
97             return true;
98         }
99         return (accessMethod.equals(that.getAccessMethod()) &&
100             accessLocation.equals(that.getAccessLocation()));
101     }
102 
toString()103     public String toString() {
104         String method = null;
105         if (accessMethod.equals(Ad_CAISSUERS_Id)) {
106             method = "caIssuers";
107         } else if (accessMethod.equals(Ad_CAREPOSITORY_Id)) {
108             method = "caRepository";
109         } else if (accessMethod.equals(Ad_TIMESTAMPING_Id)) {
110             method = "timeStamping";
111         } else if (accessMethod.equals(Ad_OCSP_Id)) {
112             method = "ocsp";
113         } else {
114             method = accessMethod.toString();
115         }
116         return ("\n   accessMethod: " + method +
117                 "\n   accessLocation: " + accessLocation.toString() + "\n");
118     }
119 }
120