Java Code Examples for sun.security.x509.X509CRLImpl#getIssuerX500Principal()

The following examples show how to use sun.security.x509.X509CRLImpl#getIssuerX500Principal() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: X509CRL.java    From jdk8u-jdk with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 2
Source File: X509CRL.java    From j2objc with Apache License 2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 3
Source File: X509CRL.java    From jdk8u-dev-jdk with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 4
Source File: X509CRL.java    From jdk-1.7-annotated with Apache License 2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an <code>X500Principal</code>.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an <code>X500Principal</code> representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 5
Source File: X509CRL.java    From jdk8u-jdk with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 6
Source File: X509CRL.java    From jdk8u_jdk with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 7
Source File: X509CRL.java    From openjdk-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 8
Source File: X509CRL.java    From openjdk-8-source with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 9
Source File: X509CRL.java    From hottub with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 10
Source File: X509CRL.java    From Java8CN with Apache License 2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 11
Source File: X509CRL.java    From jdk1.8-source-analysis with Apache License 2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 12
Source File: X509CRL.java    From openjdk-jdk9 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 13
Source File: X509CRL.java    From Bytecoder with Apache License 2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 14
Source File: X509CRL.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 15
Source File: X509CRL.java    From openjdk-jdk8u with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 16
Source File: X509CRL.java    From JDKSourceCode1.8 with MIT License 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 17
Source File: X509CRL.java    From jdk8u60 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 18
Source File: X509CRL.java    From TencentKona-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}
 
Example 19
Source File: X509CRL.java    From dragonwell8_jdk with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the issuer (issuer distinguished name) value from the
 * CRL as an {@code X500Principal}.
 * <p>
 * It is recommended that subclasses override this method.
 *
 * @return an {@code X500Principal} representing the issuer
 *          distinguished name
 * @since 1.4
 */
public X500Principal getIssuerX500Principal() {
    if (issuerPrincipal == null) {
        issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
    }
    return issuerPrincipal;
}