Searched refs:RDN (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX500Name.java136 private RDN[] names; // RDNs (never null)
141 private volatile List<RDN> rdnList;
206 names = new RDN[4];
211 names[3] = new RDN(1);
214 names[2] = new RDN(1);
217 names[1] = new RDN(1);
220 names[0] = new RDN(1);
244 names = new RDN[6];
249 names[5] = new RDN(1);
252 names[4] = new RDN(
[all...]
H A DRDN.java46 * per RDN. This style is currently common.
50 * it, but we'll need to sort them when we expose the RDN class more.
69 public class RDN { class
81 * Constructs an RDN from its printable representation.
83 * An RDN may consist of one or multiple Attribute Value Assertions (AVAs),
88 * @param name String form of RDN
91 public RDN(String name) throws IOException { method in class:RDN
96 * Constructs an RDN from its printable representation.
98 * An RDN may consist of one or multiple Attribute Value Assertions (AVAs),
103 * @param name String form of RDN
107 public RDN(String name, Map<String, String> keywordMap) throws IOException { method in class:RDN
168 RDN(String name, String format) throws IOException { method in class:RDN
184 RDN(String name, String format, Map<String, String> keywordMap) method in class:RDN
240 RDN(DerValue rdn) throws IOException { method in class:RDN
259 RDN(int i) { assertion = new AVA[i]; } method in class:RDN
261 public RDN(AVA ava) { method in class:RDN
268 public RDN(AVA[] avas) { method in class:RDN
[all...]
H A DDistributionPointName.java90 private RDN relativeName = null;
116 public DistributionPointName(RDN relativeName) {
142 relativeName = new RDN(encoding);
160 public RDN getRelativeName() {
H A DDistributionPoint.java131 private RDN relativeName;
173 public DistributionPoint(RDN relativeName, boolean[] reasonFlags,
214 relativeName = new RDN(distPnt);
256 public RDN getRelativeName() {
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DDistributionPointFetcher.java147 RDN relativeName = point.getRelativeName();
373 RDN relativeName = idpPoint.getRelativeName();
392 RDN relativeName = point.getRelativeName();
667 private static GeneralNames getFullNames(X500Name issuer, RDN rdn)
669 List<RDN> rdns = new ArrayList<RDN>(issuer.rdns());
671 X500Name fullName = new X500Name(rdns.toArray(new RDN[0]));

Completed in 38 milliseconds