Lines Matching defs:X500Name

130 public class X500Name implements GeneralNameInterface, Principal {
151 public X500Name(String dname) throws IOException {
163 public X500Name(String dname, Map<String, String> keywordMap)
171 * DEFAULT is the default format used by the X500Name(String)
177 public X500Name(String dname, String format) throws IOException {
203 public X500Name(String commonName, String organizationUnit,
240 public X500Name(String commonName, String organizationUnit,
275 public X500Name(RDN[] rdnArray) throws IOException {
282 throw new IOException("Cannot create an X500Name");
294 public X500Name(DerValue value) throws IOException {
306 public X500Name(DerInputStream in) throws IOException {
315 public X500Name(byte[] name) throws IOException {
321 * Return an immutable List of all RDNs in this X500Name.
333 * Return the number of RDNs in this X500Name.
341 * RDNs of this X500Name.
356 * this X500Name.
363 * Return whether this X500Name is empty. An X500Name is not empty
396 if (obj instanceof X500Name == false) {
399 X500Name other = (X500Name)obj;
1264 X500Name inputX500 = (X500Name)inputName;
1289 private boolean isWithinSubtree(X500Name other) {
1328 * @param other another X500Name
1329 * @return X500Name of lowest common ancestor; null if none
1331 public X500Name commonAncestor(X500Name other) {
1362 X500Name commonAncestor = null;
1364 commonAncestor = new X500Name(ancestor);
1390 Class[] args = new Class[] {X500Name.class};
1409 * Get an X500Principal backed by this X500Name.
1428 * Get the X500Name contained in the given X500Principal.
1430 * Note that the X500Name is retrieved using reflection.
1432 public static X500Name asX500Name(X500Principal p) {
1434 X500Name name = (X500Name)principalField.get(p);