Package org.xipki.ca.server
Class CaIdNameMap
- java.lang.Object
-
- org.xipki.ca.server.CaIdNameMap
-
public class CaIdNameMap extends Object
Container of NameId of CA management entries.- Since:
- 2.2.0
- Author:
- Lijun Liao (xipki)
-
-
Constructor Summary
Constructors Constructor Description CaIdNameMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddCa(org.xipki.ca.api.NameId nameId)voidaddCertprofile(org.xipki.ca.api.NameId nameId)voidaddPublisher(org.xipki.ca.api.NameId nameId)voidaddRequestor(org.xipki.ca.api.NameId nameId)voidclearCa()voidclearCertprofile()voidclearPublisher()voidclearRequestor()org.xipki.ca.api.NameIdgetCa(int id)org.xipki.ca.api.NameIdgetCa(String name)StringgetCaName(int id)org.xipki.ca.api.NameIdgetCertprofile(int id)org.xipki.ca.api.NameIdgetCertprofile(String name)StringgetCertprofileName(int id)org.xipki.ca.api.NameIdgetPublisher(String name)StringgetPublisherName(int id)org.xipki.ca.api.NameIdgetRequestor(int id)org.xipki.ca.api.NameIdgetRequestor(String name)org.xipki.ca.api.NameIdremoveCa(String name)org.xipki.ca.api.NameIdremoveCertprofile(int id)org.xipki.ca.api.NameIdremoveRequestor(int id)
-
-
-
Method Detail
-
addCertprofile
public void addCertprofile(org.xipki.ca.api.NameId nameId)
-
addPublisher
public void addPublisher(org.xipki.ca.api.NameId nameId)
-
addRequestor
public void addRequestor(org.xipki.ca.api.NameId nameId)
-
addCa
public void addCa(org.xipki.ca.api.NameId nameId)
-
getCertprofile
public org.xipki.ca.api.NameId getCertprofile(int id)
-
getCertprofile
public org.xipki.ca.api.NameId getCertprofile(String name)
-
getPublisher
public org.xipki.ca.api.NameId getPublisher(String name)
-
getRequestor
public org.xipki.ca.api.NameId getRequestor(int id)
-
getRequestor
public org.xipki.ca.api.NameId getRequestor(String name)
-
getCa
public org.xipki.ca.api.NameId getCa(int id)
-
getCa
public org.xipki.ca.api.NameId getCa(String name)
-
getCertprofileName
public String getCertprofileName(int id)
-
getPublisherName
public String getPublisherName(int id)
-
getCaName
public String getCaName(int id)
-
clearCertprofile
public void clearCertprofile()
-
clearPublisher
public void clearPublisher()
-
clearRequestor
public void clearRequestor()
-
clearCa
public void clearCa()
-
removeCertprofile
public org.xipki.ca.api.NameId removeCertprofile(int id)
-
removeRequestor
public org.xipki.ca.api.NameId removeRequestor(int id)
-
removeCa
public org.xipki.ca.api.NameId removeCa(String name)
-
-