Searched defs:relativeName (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/x509/
H A DDistributionPointName.java88 // Only one of fullName and relativeName can be set
90 private RDN relativeName = null; field in class:DistributionPointName
112 * @param relativeName the name of the distribution point relative to
114 * @exception IllegalArgumentException if <code>relativeName</code> is null.
116 public DistributionPointName(RDN relativeName) { argument
118 if (relativeName == null) {
119 throw new IllegalArgumentException("relativeName must not be null");
121 this.relativeName = relativeName;
142 relativeName
[all...]
H A DDistributionPoint.java129 // only one of fullName and relativeName can be set
131 private RDN relativeName; field in class:DistributionPoint
166 * @param relativeName the RelativeDistinguishedName of the distribution
173 public DistributionPoint(RDN relativeName, boolean[] reasonFlags, argument
175 if ((relativeName == null) && (crlIssuer == null)) {
177 ("relativeName and crlIssuer may not both be null");
179 this.relativeName = relativeName;
202 if ((fullName != null) || (relativeName != null)) {
214 relativeName
[all...]

Completed in 137 milliseconds