Searched defs:fullName (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/x509/
H A DDistributionPointName.java45 * fullName [0] GeneralNames,
88 // Only one of fullName and relativeName can be set
89 private GeneralNames fullName = null; field in class:DistributionPointName
98 * @param fullName the name for the distribution point.
99 * @exception IllegalArgumentException if <code>fullName</code> is null.
101 public DistributionPointName(GeneralNames fullName) { argument
103 if (fullName == null) {
104 throw new IllegalArgumentException("fullName must not be null");
106 this.fullName = fullName;
[all...]
H A DDistributionPoint.java47 * fullName [0] GeneralNames,
129 // only one of fullName and relativeName can be set
130 private GeneralNames fullName; field in class:DistributionPoint
145 * @param fullName the GeneralNames of the distribution point; may be null
151 public DistributionPoint(GeneralNames fullName, boolean[] reasonFlags, argument
153 if ((fullName == null) && (crlIssuer == null)) {
155 ("fullName and crlIssuer may not both be null");
157 this.fullName = fullName;
202 if ((fullName !
[all...]
/libcore/ojluni/src/main/java/java/security/
H A DIdentity.java347 if (this.fullName().equals(i.fullName())) {
387 String fullName() { method in class:Identity

Completed in 73 milliseconds