Package org.ejbca.ui.web.admin.configuration

Examples of org.ejbca.ui.web.admin.configuration.EjbcaJSFHelper


    public String getCaName() {
        if (!initialized) {
            return "TestCA";
        }
        EjbcaJSFHelper helpBean = EjbcaJSFHelper.getBean();
        if (data.getCAId() == ApprovalDataVO.ANY_CA) {
            return helpBean.getEjbcaWebBean().getText("ANYCA", true);
        }
        return ejb.getCaAdminSession().getCAInfo(helpBean.getAdmin(), data.getCAId()).getName();
    }
View Full Code Here


    public String getEndEntityProfileName() {
        if (!initialized) {
            return "TestProfile";
        }
        EjbcaJSFHelper helpBean = EjbcaJSFHelper.getBean();
        if (data.getEndEntityProfileiId() == ApprovalDataVO.ANY_ENDENTITYPROFILE) {
            return helpBean.getEjbcaWebBean().getText("ANYENDENTITYPROFILE", true);
        }
        return ejb.getEndEntityProfileSession().getEndEntityProfileName(helpBean.getAdmin(), data.getEndEntityProfileiId());
    }
View Full Code Here

TOP

Related Classes of org.ejbca.ui.web.admin.configuration.EjbcaJSFHelper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.