Lines Matching defs:oid
52 private ObjectIdentifier oid;
64 * @param oid ObjectIdentifier of this OtherName object
68 public OtherName(ObjectIdentifier oid, byte[] value) throws IOException {
69 if (oid == null || value == null) {
72 this.oid = oid;
74 gni = getGNI(oid, value);
78 name = "Unrecognized ObjectIdentifier: " + oid.toString();
91 oid = in.getOID();
94 gni = getGNI(oid, nameValue);
98 name = "Unrecognized ObjectIdentifier: " + oid.toString();
107 return oid;
120 private GeneralNameInterface getGNI(ObjectIdentifier oid, byte[] nameValue)
123 Class extClass = OIDMap.getClass(oid);
160 tmp.putOID(oid);
179 if (!(otherOther.oid.equals(oid))) {
184 otherGNI = getGNI(otherOther.oid, otherOther.nameValue);
210 myhash = 37 + oid.hashCode();