Package org.xipki.qa.ca
Class CaQaSystemManagerImpl
- java.lang.Object
-
- org.xipki.qa.ca.CaQaSystemManagerImpl
-
- All Implemented Interfaces:
Closeable,AutoCloseable,CaQaSystemManager
public class CaQaSystemManagerImpl extends Object implements CaQaSystemManager
An implementation ofCaQaSystemManager.- Since:
- 2.0.0
- Author:
- Lijun Liao (xipki)
-
-
Constructor Summary
Constructors Constructor Description CaQaSystemManagerImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()CertprofileQagetCertprofile(String certprofileName)Returns the Certprofile for the given name.Set<String>getCertprofileNames()StringgetConfFile()IssuerInfogetIssuer(String issuerName)Returns the issuer information.Set<String>getIssuerNames()booleaninit()voidsetConfFile(String confFile)
-
-
-
Method Detail
-
getConfFile
public String getConfFile()
-
setConfFile
public void setConfFile(String confFile)
-
init
public boolean init()
- Specified by:
initin interfaceCaQaSystemManager
-
close
public void close()
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable
-
getIssuerNames
public Set<String> getIssuerNames()
- Specified by:
getIssuerNamesin interfaceCaQaSystemManager
-
getIssuer
public IssuerInfo getIssuer(String issuerName)
Description copied from interface:CaQaSystemManagerReturns the issuer information.- Specified by:
getIssuerin interfaceCaQaSystemManager- Parameters:
issuerName- Name of the issuer- Returns:
- the issuer
-
getCertprofileNames
public Set<String> getCertprofileNames()
- Specified by:
getCertprofileNamesin interfaceCaQaSystemManager
-
getCertprofile
public CertprofileQa getCertprofile(String certprofileName)
Description copied from interface:CaQaSystemManagerReturns the Certprofile for the given name.- Specified by:
getCertprofilein interfaceCaQaSystemManager- Parameters:
certprofileName- Name of the cert profile.- Returns:
- the cert profile.
-
-