本文整理汇总了Java中org.apache.catalina.realm.JNDIRealm类的典型用法代码示例。如果您正苦于以下问题:Java JNDIRealm类的具体用法?Java JNDIRealm怎么用?Java JNDIRealm使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
JNDIRealm类属于org.apache.catalina.realm包,在下文中一共展示了JNDIRealm类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createJNDIRealm
import org.apache.catalina.realm.JNDIRealm; //导入依赖的package包/类
/**
* Create a new JNDI Realm.
*
* @param parent MBean Name of the associated parent component
*
* @exception Exception if an MBean cannot be created or registered
*/
public String createJNDIRealm(String parent)
throws Exception {
// Create a new JNDIRealm instance
JNDIRealm realm = new JNDIRealm();
// Add the new instance to its parent component
ObjectName pname = new ObjectName(parent);
ContainerBase containerBase = getParentContainerFromParent(pname);
// Add the new instance to its parent component
containerBase.setRealm(realm);
// Return the corresponding MBean name
ObjectName oname = realm.getObjectName();
if (oname != null) {
return (oname.toString());
} else {
return null;
}
}
示例2: createJNDIRealm
import org.apache.catalina.realm.JNDIRealm; //导入依赖的package包/类
/**
* Create a new JNDI Realm.
*
* @param parent
* MBean Name of the associated parent component
*
* @exception Exception
* if an MBean cannot be created or registered
*/
public String createJNDIRealm(String parent) throws Exception {
// Create a new JNDIRealm instance
JNDIRealm realm = new JNDIRealm();
// Add the new instance to its parent component
ObjectName pname = new ObjectName(parent);
ContainerBase containerBase = getParentContainerFromParent(pname);
// Add the new instance to its parent component
containerBase.setRealm(realm);
// Return the corresponding MBean name
ObjectName oname = realm.getObjectName();
if (oname != null) {
return (oname.toString());
} else {
return null;
}
}
示例3: setUpWithPassword
import org.apache.catalina.realm.JNDIRealm; //导入依赖的package包/类
private void setUpWithPassword(String password) throws Exception {
storedPassword = password;
ldapRealm = new LdapRealm();
Field field = JNDIRealm.class.getDeclaredField("context");
field.setAccessible(true);
field.set(ldapRealm, prepareContext());
ldapRealm.setContainer(prepareContainer());
ldapRealm.setUserSearch("");
ldapRealm.init();
}