本文整理汇总了Java中net.jradius.client.auth.CHAPAuthenticator类的典型用法代码示例。如果您正苦于以下问题:Java CHAPAuthenticator类的具体用法?Java CHAPAuthenticator怎么用?Java CHAPAuthenticator使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
CHAPAuthenticator类属于net.jradius.client.auth包,在下文中一共展示了CHAPAuthenticator类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testRetrieveUserChap
import net.jradius.client.auth.CHAPAuthenticator; //导入依赖的package包/类
@Test
@Ignore("Need to have a RADIUS server running on localhost")
public void testRetrieveUserChap() throws IOException {
RadiusAuthenticationProvider provider = new RadiusAuthenticationProvider(m_radiusServer, m_sharedSecret);
RadiusAuthenticator authTypeClass = new CHAPAuthenticator();
provider.setAuthTypeClass(authTypeClass);
provider.setRolesAttribute("Unknown-VSAttribute(5813:1)");
UsernamePasswordAuthenticationToken token = new UsernamePasswordAuthenticationToken(m_principal, m_credentials);
provider.retrieveUser(m_username, token);
}
示例2: testRetrieveUserMultipleTimesCHAP
import net.jradius.client.auth.CHAPAuthenticator; //导入依赖的package包/类
@Test
@Ignore("Need to have a RADIUS server running on localhost")
public void testRetrieveUserMultipleTimesCHAP() throws IOException {
doTestRetrieveUserMultipleTimes(new CHAPAuthenticator());
}