本文整理汇总了Java中org.jvnet.libpam.PAMException类的典型用法代码示例。如果您正苦于以下问题:Java PAMException类的具体用法?Java PAMException怎么用?Java PAMException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
PAMException类属于org.jvnet.libpam包,在下文中一共展示了PAMException类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testUserAuthority
import org.jvnet.libpam.PAMException; //导入依赖的package包/类
@Test
public void testUserAuthority() throws PAMException {
PAM pam = Mockito.mock(PAM.class);
UnixUser user = new UnixUser(System.getenv("USER"));
Mockito.when(pam.authenticate("testuser", "testpwd")).thenReturn(user);
UserAuthority userAuthority = new UserAuthority();
userAuthority.setPAM(pam);
assertEquals(userAuthority.getDomain(), expectedDomain);
assertEquals(userAuthority.getHeader(), expectedHeader);
StringBuilder errMsg = new StringBuilder();
Principal principal = userAuthority.authenticate(testToken, "10.72.118.45", "GET", errMsg);
assertNotNull(principal);
assertNotNull(principal.getAuthority());
assertEquals(principal.getCredentials(), testToken);
assertEquals(principal.getDomain(), expectedDomain);
assertEquals(principal.getName(), expectedUserId);
}
示例2: performLogin
import org.jvnet.libpam.PAMException; //导入依赖的package包/类
private boolean performLogin() throws LoginException
{
try
{
UnixUser user = pam.authenticate(username, password);
principal = new PamPrincipal(user);
authSucceeded = true;
return true;
}
catch (PAMException ex)
{
LoginException le = new FailedLoginException("Invalid username or password");
le.initCause(ex);
throw le;
}
}
示例3: doGetAuthenticationInfo
import org.jvnet.libpam.PAMException; //导入依赖的package包/类
@Override
protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token)
throws AuthenticationException {
UsernamePasswordToken userToken = (UsernamePasswordToken) token;
UnixUser user;
try {
user = (new PAM(this.getService()))
.authenticate(userToken.getUsername(), new String(userToken.getPassword()));
} catch (PAMException e) {
throw new AuthenticationException("Authentication failed for PAM.", e);
}
return new SimpleAuthenticationInfo(
new UserPrincipal(user),
userToken.getCredentials(),
getName());
}
示例4: performLogin
import org.jvnet.libpam.PAMException; //导入依赖的package包/类
private boolean performLogin() throws LoginException
{
try
{
UnixUser user = _pam.authenticate(_username, _password);
_principal = new PamPrincipal(user);
_authSucceeded = true;
return true;
}
catch (PAMException ex)
{
LoginException le = new FailedLoginException("Invalid username or password");
le.initCause(ex);
throw le;
}
}
示例5: testAuthenticateException
import org.jvnet.libpam.PAMException; //导入依赖的package包/类
@Test
public void testAuthenticateException() throws PAMException {
PAM pam = Mockito.mock(PAM.class);
UserAuthority userAuthority = new UserAuthority();
userAuthority.setPAM(pam);
Mockito.when(pam.authenticate("testuser", "testpwd")).thenReturn(null);
Principal principal = userAuthority.authenticate("Basic dGVzdHVzZXI6dGVzdHB3ZA==", "10.72.118.45", "GET", null);
principal = userAuthority.authenticate("Basic ", "10.72.118.45", "GET", null);
assertNull(principal);
}
示例6: createPam
import org.jvnet.libpam.PAMException; //导入依赖的package包/类
private void createPam(String service) throws LoginException
{
try
{
pam = new PAM(service);
}
catch (PAMException ex)
{
LoginException le = new LoginException("Error initializing PAM");
le.initCause(ex);
throw le;
}
}
示例7: createPam
import org.jvnet.libpam.PAMException; //导入依赖的package包/类
private void createPam(String service) throws LoginException
{
try
{
_pam = new PAM(service);
}
catch (PAMException ex)
{
LoginException le = new LoginException("Error initializing PAM");
le.initCause(ex);
throw le;
}
}
示例8: getPAM
import org.jvnet.libpam.PAMException; //导入依赖的package包/类
PAM getPAM() throws PAMException {
if (pam != null) {
return pam;
}
return new PAM(serviceName);
}