Methods Summary |
---|
public static org.apache.harmony.security.x509.IssuingDistributionPoint | decode(byte[] encoding)Creates the extension object on the base of its encoded form.
IssuingDistributionPoint idp =
(IssuingDistributionPoint) ASN1.decode(encoding);
idp.encoding = encoding;
return idp;
|
public void | dumpValue(java.lang.StringBuffer buffer, java.lang.String prefix)Places the string representation of extension value
into the StringBuffer object.
buffer.append(prefix).append("Issuing Distribution Point: [\n"); //$NON-NLS-1$
if (distributionPoint != null) {
distributionPoint.dumpValue(buffer, " " + prefix); //$NON-NLS-1$
}
buffer.append(prefix).append(" onlyContainsUserCerts: ") //$NON-NLS-1$
.append(onlyContainsUserCerts).append('\n");
buffer.append(prefix).append(" onlyContainsCACerts: ") //$NON-NLS-1$
.append(onlyContainsCACerts).append('\n");
if (onlySomeReasons != null) {
onlySomeReasons.dumpValue(buffer, prefix + " "); //$NON-NLS-1$
}
buffer.append(prefix).append(" indirectCRL: ") //$NON-NLS-1$
.append(indirectCRL).append('\n");
buffer.append(prefix).append(" onlyContainsAttributeCerts: ") //$NON-NLS-1$
.append(onlyContainsAttributeCerts).append('\n");
|
public DistributionPointName | getDistributionPoint()Returns value of distributionPoint field of the structure.
return distributionPoint;
|
public byte[] | getEncoded()Returns ASN.1 encoded form of this X.509 IssuingDistributionPoint value.
if (encoding == null) {
encoding = ASN1.encode(this);
}
return encoding;
|
public boolean | getIndirectCRL()Returns value of indirectCRL field of the structure.
return indirectCRL;
|
public boolean | getOnlyContainsAttributeCerts()Returns value of onlyContainsAttributeCerts field of the structure.
return onlyContainsAttributeCerts;
|
public boolean | getOnlyContainsCACerts()Returns value of onlyContainsCACerts field of the structure.
return onlyContainsCACerts;
|
public boolean | getOnlyContainsUserCerts()Returns value of onlyContainsUserCerts field of the structure.
return onlyContainsUserCerts;
|
public ReasonFlags | getOnlySomeReasons()Returns value of onlySomeReasons field of the structure.
return onlySomeReasons;
|
public void | setIndirectCRL(boolean indirectCRL)Sets the value of indirectCRL field of the structure.
this.indirectCRL = indirectCRL;
|
public void | setOnlyContainsAttributeCerts(boolean onlyContainsAttributeCerts)Sets the value of onlyContainsAttributeCerts field of the structure.
this.onlyContainsAttributeCerts = onlyContainsAttributeCerts;
|
public void | setOnlyContainsCACerts(boolean onlyContainsCACerts)Sets the value of onlyContainsCACerts field of the structure.
this.onlyContainsCACerts = onlyContainsCACerts;
|
public void | setOnlyContainsUserCerts(boolean onlyContainsUserCerts)Sets the value of onlyContainsUserCerts field of the structure.
this.onlyContainsUserCerts = onlyContainsUserCerts;
|