kerby-kerb/kerb-client/src/main/java/org/apache/kerby/kerberos/kerb/client/preauth/pkinit/PkinitRequestOpts.java [41:78]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean isRequireEku() {
        return requireEku;
    }

    public void setRequireEku(boolean requireEku) {
        this.requireEku = requireEku;
    }

    public boolean isAcceptSecondaryEku() {
        return acceptSecondaryEku;
    }

    public void setAcceptSecondaryEku(boolean acceptSecondaryEku) {
        this.acceptSecondaryEku = acceptSecondaryEku;
    }

    public boolean isAllowUpn() {
        return allowUpn;
    }

    public void setAllowUpn(boolean allowUpn) {
        this.allowUpn = allowUpn;
    }

    public boolean isUsingRsa() {
        return usingRsa;
    }

    public void setUsingRsa(boolean usingRsa) {
        this.usingRsa = usingRsa;
    }

    public boolean isRequireCrlChecking() {
        return requireCrlChecking;
    }

    public void setRequireCrlChecking(boolean requireCrlChecking) {
        this.requireCrlChecking = requireCrlChecking;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



kerby-kerb/kerb-common/src/main/java/org/apache/kerby/kerberos/kerb/preauth/pkinit/PluginOpts.java [71:108]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean isRequireEku() {
        return requireEku;
    }

    public void setRequireEku(boolean requireEku) {
        this.requireEku = requireEku;
    }

    public boolean isAcceptSecondaryEku() {
        return acceptSecondaryEku;
    }

    public void setAcceptSecondaryEku(boolean acceptSecondaryEku) {
        this.acceptSecondaryEku = acceptSecondaryEku;
    }

    public boolean isAllowUpn() {
        return allowUpn;
    }

    public void setAllowUpn(boolean allowUpn) {
        this.allowUpn = allowUpn;
    }

    public boolean isUsingRsa() {
        return usingRsa;
    }

    public void setUsingRsa(boolean usingRsa) {
        this.usingRsa = usingRsa;
    }

    public boolean isRequireCrlChecking() {
        return requireCrlChecking;
    }

    public void setRequireCrlChecking(boolean requireCrlChecking) {
        this.requireCrlChecking = requireCrlChecking;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



