封裝jndi操作ldap辦事器的對象類。本站提示廣大學習愛好者:(封裝jndi操作ldap辦事器的對象類)文章只能為提供參考,不一定能成為您想要的結果。以下是封裝jndi操作ldap辦事器的對象類正文
LDAP操作封裝類
目的:應用者只須要會應用List,Map 數據構造,將對LDAP的操作停止封裝
類:重要有三個類
1 Env類 包括LDAP的銜接信息
2 LdapConnectionFactory類 ldap銜接工場,供給初始化及獲得ldap銜接的辦法
3 LdapOperUtils ldap的處置對象類,供給了各類操作ldap的辦法。
銜接LDAP的銜接屬性類
package com.common.ldapconnection;
import org.apache.log4j.Logger;
/**
* <p>功效描寫:銜接LDAP的銜接屬性</p>
* @author liaowufeng
* @version 1.0
*/
public class Env {
// 挪用log4j的日記,用於輸入
private Logger log = Logger.getLogger(Env.class.getName());
// 不管用甚麼LDAP辦事器的固定寫法,指定了JNDI辦事供給者中工場類
public String factory ;
// 辦事銜接地址
public String url ;
// 上岸LDAP的用戶名和暗碼
public String adminUID ;
// 上岸LDAP用戶暗碼
public String adminPWD ;
// 平安拜訪須要的證書庫
public String sslTrustStore;
// 平安通道拜訪
public String securityProtocol ;
// 銜接TimeOut
public String timeOut;
/**
* 結構函數
*/
public Env() {
}
/**
* 結構函數
* @param factory LDAP工場類
* @param url LDAP URL
* @param adminUID LDAP 用戶
* @param adminPWD LDAP 暗碼
*/
public Env(String factory, String url, String adminUID, String adminPWD) {
this.factory = factory;
this.url = url;
this.adminUID = adminUID;
this.adminPWD = adminPWD;
}
/**
* 結構函數
* @param factory LDAP 工場類名
* @param url LDAP URL
* @param adminUID LDAP 用戶
* @param adminPWD LDAP 暗碼
* @param sslTrustStore 平安拜訪須要的證書
* @param securityProtocol 平安通道拜訪
*/
public Env(String factory, String url, String adminUID, String adminPWD,
String sslTrustStore,
String securityProtocol) {
this.factory = factory;
this.url = url;
this.adminUID = adminUID;
this.adminPWD = adminPWD;
this.sslTrustStore = sslTrustStore;
this.securityProtocol = securityProtocol;
}
/**
* 結構函數
* @param factory LDAP 工場類名
* @param url LDAP URL
* @param adminUID LDAP 用戶
* @param adminPWD LDAP 暗碼
* @param sslTrustStore 平安拜訪須要的證書
* @param securityProtocol 平安通道拜訪
*/
public Env(String factory, String url, String adminUID, String adminPWD,
String timeOut,
String sslTrustStore,
String securityProtocol) {
this.factory = factory;
this.url = url;
this.adminUID = adminUID;
this.adminPWD = adminPWD;
this.timeOut = timeOut;
this.sslTrustStore = sslTrustStore;
this.securityProtocol = securityProtocol;
}
}