Package com.sun.identity.security.cert
Class AMLDAPCertStoreParameters
- java.lang.Object
-
- com.sun.identity.security.cert.AMLDAPCertStoreParameters
-
public class AMLDAPCertStoreParameters extends Object
Parameters used to access ldap cert store
-
-
Constructor Summary
Constructors Constructor Description AMLDAPCertStoreParameters(String server, int port)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPassword()
Get ldap password for bindint
getPort()
Get port numberString
getSearchFilter()
Get search filter for ldap searchString
getServerName()
Get host nameString
getStartLoc()
Get ldap search start locString
getURIParams()
Get URI params for CRL searchString
getUser()
Get ldap user for bindboolean
isDoCRLCaching()
boolean
isDoUpdateCRLs()
boolean
isSecure()
Get ldap port is securevoid
setDoCRLCaching(boolean doCRLCaching)
void
setDoCRLUpdate(boolean doCRLupdate)
static AMLDAPCertStoreParameters
setLdapStoreParam(AMLDAPCertStoreParameters ldapParams, String user, String passwd, String searchLoc, String uriParamsCRL, boolean secureCon)
void
setPassword(String passwd)
Set ldap password for bindvoid
setSearchFilter(String filter)
Set search filter for ldap searchvoid
setSecure(boolean secure)
Set ldap port is securevoid
setStartLoc(String startloc)
Set ldap search start locvoid
setURIParams(String params)
Set URI params for CRL searchvoid
setUser(String uid)
Set ldap user for bind
-
-
-
Constructor Detail
-
AMLDAPCertStoreParameters
public AMLDAPCertStoreParameters(String server, int port)
- Parameters:
server
-port
-
-
-
Method Detail
-
setLdapStoreParam
public static AMLDAPCertStoreParameters setLdapStoreParam(AMLDAPCertStoreParameters ldapParams, String user, String passwd, String searchLoc, String uriParamsCRL, boolean secureCon)
-
getServerName
public String getServerName()
Get host name
-
getPort
public int getPort()
Get port number
-
setStartLoc
public void setStartLoc(String startloc)
Set ldap search start loc
-
getStartLoc
public String getStartLoc()
Get ldap search start loc
-
setUser
public void setUser(String uid)
Set ldap user for bind
-
getUser
public String getUser()
Get ldap user for bind
-
setPassword
public void setPassword(String passwd)
Set ldap password for bind
-
getPassword
public String getPassword()
Get ldap password for bind
-
setURIParams
public void setURIParams(String params)
Set URI params for CRL search
-
getURIParams
public String getURIParams()
Get URI params for CRL search
-
setSearchFilter
public void setSearchFilter(String filter)
Set search filter for ldap search
-
getSearchFilter
public String getSearchFilter()
Get search filter for ldap search
-
setSecure
public void setSecure(boolean secure)
Set ldap port is secure
-
isSecure
public boolean isSecure()
Get ldap port is secure
-
isDoCRLCaching
public boolean isDoCRLCaching()
- Returns:
- the doCRLCaching
-
setDoCRLCaching
public void setDoCRLCaching(boolean doCRLCaching)
- Parameters:
doCRLCaching
- the doCRLCaching to set
-
isDoUpdateCRLs
public boolean isDoUpdateCRLs()
- Returns:
- the doCRLupdate
-
setDoCRLUpdate
public void setDoCRLUpdate(boolean doCRLupdate)
- Parameters:
doCRLupdate
- the doCRLupdate to set
-
-