• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Java Authentication类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.apache.ftpserver.ftplet.Authentication的典型用法代码示例。如果您正苦于以下问题:Java Authentication类的具体用法?Java Authentication怎么用?Java Authentication使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Authentication类属于org.apache.ftpserver.ftplet包,在下文中一共展示了Authentication类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: authenticate

import org.apache.ftpserver.ftplet.Authentication; //导入依赖的package包/类
/**
 * Tries to do the login using a client generated on the fly
 */
@Override
public User authenticate(Authentication authentication)
		throws AuthenticationFailedException {
	if (authentication instanceof UsernamePasswordAuthentication) {
		UsernamePasswordAuthentication auth = (UsernamePasswordAuthentication) authentication;
		AdministratorGeoStoreClient client = new AdministratorGeoStoreClient();
		client.setUsername(auth.getUsername());
		client.setPassword(auth.getPassword());
		client.setGeostoreRestUrl(this.client.getGeostoreRestUrl());
		it.geosolutions.geostore.core.model.User gsUser = client
				.getUserDetails();
		User user = new GeoStoreFTPUser(gsUser, authoritiesProvider);
		
		
		return user;

	} else {
		LOGGER.error("Unrecognized authentication type: "
				+ authentication.getClass().getName());
		throw new AuthenticationFailedException(
				"Unrecognized authentication type: "
						+ authentication.getClass().getName());
	}
}
 
开发者ID:geosolutions-it,项目名称:OpenSDI-Manager2,代码行数:28,代码来源:GeoStoreFTPUserManager.java


示例2: authenticate

import org.apache.ftpserver.ftplet.Authentication; //导入依赖的package包/类
@Override
public User authenticate(Authentication authentication) throws AuthenticationFailedException {
    if (authentication instanceof UsernamePasswordAuthentication) {
        UsernamePasswordAuthentication usernameAndPassword = (UsernamePasswordAuthentication) authentication;
        String username = usernameAndPassword.getUsername();

        User user = users.get(username);
        if (null == user) {
            throw new AuthenticationFailedException("unknown user '" + username + "'");
        }
        String password = usernameAndPassword.getPassword();
        if (getPasswordEncryptor().matches(password, user.getPassword())) {
            return user;
        } else {
            throw new AuthenticationFailedException("password wrong");
        }
    }
    throw new AuthenticationFailedException("try harder");
}
 
开发者ID:signed,项目名称:in-memory-infrastructure,代码行数:20,代码来源:InMemoryUserManager.java


示例3: authenticate

import org.apache.ftpserver.ftplet.Authentication; //导入依赖的package包/类
@Override
public User authenticate(Authentication auth) throws AuthenticationFailedException {
	if(auth!=null && auth instanceof UsernamePasswordAuthentication){
		UsernamePasswordAuthentication userAuth = (UsernamePasswordAuthentication) auth;
		if(user.getName().equals(userAuth.getUsername()) && user.getPassword().equals(userAuth.getPassword())){
			return user;
		}
	}
	return null;
}
 
开发者ID:dubasdey,项目名称:portable-ftp-server,代码行数:11,代码来源:InMemoryUserManager.java


示例4: authenticate

import org.apache.ftpserver.ftplet.Authentication; //导入依赖的package包/类
@Override
public User authenticate(Authentication auth) throws AuthenticationFailedException {
	if (auth instanceof UsernamePasswordAuthentication) {
		UsernamePasswordAuthentication a = ((UsernamePasswordAuthentication) auth);
		
		if ("admin".equals(a.getUsername()) && "admin".equals(a.getPassword())) {
			return getUserByName("admin");
		}
	}
	
	throw new AuthenticationFailedException();
}
 
开发者ID:Blazebit,项目名称:blaze-storage,代码行数:13,代码来源:AdminUserManagerFactory.java


示例5: authenticate

import org.apache.ftpserver.ftplet.Authentication; //导入依赖的package包/类
@Override
public User authenticate(Authentication authentication) throws AuthenticationFailedException {
    if (authentication instanceof UsernamePasswordAuthentication) {
        UsernamePasswordAuthentication auth = (UsernamePasswordAuthentication) authentication;
        if (ftpUser.getName().equals(auth.getUsername()) && "topsecret".equals(auth.getPassword())) {
            return ftpUser;
        }
    }
    throw new AuthenticationFailedException();
}
 
开发者ID:AludraTest,项目名称:aludratest,代码行数:11,代码来源:FtpFileServiceTest.java


示例6: authenticate

import org.apache.ftpserver.ftplet.Authentication; //导入依赖的package包/类
@Override
public User authenticate(Authentication authentication) throws AuthenticationFailedException {
	if (UsernamePasswordAuthentication.class.isAssignableFrom(authentication.getClass())) {
		UsernamePasswordAuthentication upAuth = (UsernamePasswordAuthentication) authentication;
		BaseUser user = users.get(upAuth.getUsername());
		if (user != null && user.getEnabled() && (user.getName().equals("anonymous") || user.getPassword().equals(upAuth.getPassword()))){
			return user;
		}
	} else if (AnonymousAuthentication.class.isAssignableFrom(authentication.getClass())) {
		BaseUser anonymous = users.get("anonymous");
		return anonymous.getEnabled() ? anonymous : null;
	}
	return null;
}
 
开发者ID:andresoviedo,项目名称:google-drive-ftp-adapter,代码行数:15,代码来源:GFtpServerFactory.java


示例7: authenticate

import org.apache.ftpserver.ftplet.Authentication; //导入依赖的package包/类
public User authenticate(Authentication authentication) throws AuthenticationFailedException {
	if ((authentication instanceof UsernamePasswordAuthentication) == false) {
		throw new AuthenticationFailedException("Can't manage " + authentication.getClass().getSimpleName() + " auth class.");
	}
	UsernamePasswordAuthentication auth = (UsernamePasswordAuthentication) authentication;
	
	String addr = auth.getUserMetadata().getInetAddress().getHostAddress();
	String username = auth.getUsername();
	String login_name = FTPUser.makeUserId(username, domain);
	
	try {
		FTPUser user = FTPUser.getUserByName(username, domain);
		if (user == null) {
			AccessControl.failedAttempt(addr, login_name);
			return null;
		}
		if (user.validPassword(auth)) {
			AccessControl.releaseIP(addr);
			return user.updateLastLogin();
		} else {
			AccessControl.failedAttempt(addr, login_name);
		}
	} catch (ConnectionException e) {
		Loggers.FTPserver.error("Can't access to db", e);
	}
	return null;
}
 
开发者ID:hdsdi3g,项目名称:MyDMAM,代码行数:28,代码来源:FTPUserManager.java


示例8: authenticate

import org.apache.ftpserver.ftplet.Authentication; //导入依赖的package包/类
@Override
public User authenticate(Authentication authentication) throws AuthenticationFailedException {
	return this.testUser;
}
 
开发者ID:spring-cloud-stream-app-starters,项目名称:ftp,代码行数:5,代码来源:FtpTestSupport.java


示例9: authenticate

import org.apache.ftpserver.ftplet.Authentication; //导入依赖的package包/类
/**
 * User authenticate method
 */
public User authenticate(Authentication authentication)
        throws AuthenticationFailedException {
    if (authentication instanceof UsernamePasswordAuthentication) {
        UsernamePasswordAuthentication upauth = (UsernamePasswordAuthentication) authentication;

        String user = upauth.getUsername();
        String password = upauth.getPassword();

        if (user == null) {
            throw new AuthenticationFailedException("Authentication failed");
        }

        if (password == null) {
            password = "";
        }

        String storedPassword = userDataProp.getProperty(PREFIX + user
                + '.' + ATTR_PASSWORD);

        if (storedPassword == null) {
            // user does not exist
            throw new AuthenticationFailedException("Authentication failed");
        }

        if (getPasswordEncryptor().matches(password, storedPassword)) {
            return getUserByName(user);
        } else {
            throw new AuthenticationFailedException("Authentication failed");
        }

    } else if (authentication instanceof AnonymousAuthentication) {
        if (doesExist("anonymous")) {
            return getUserByName("anonymous");
        } else {
            throw new AuthenticationFailedException("Authentication failed");
        }
    } else {
        throw new IllegalArgumentException(
                "Authentication not supported by this user manager");
    }
}
 
开发者ID:lgnlgn,项目名称:feluca,代码行数:45,代码来源:PropertiesUserManager.java


示例10: authenticate

import org.apache.ftpserver.ftplet.Authentication; //导入依赖的package包/类
public User authenticate(Authentication authentication)
        throws AuthenticationFailedException {
    return null;
}
 
开发者ID:saaconsltd,项目名称:mina-ftpserver,代码行数:5,代码来源:MockUserManager.java



注:本文中的org.apache.ftpserver.ftplet.Authentication类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java LinkedHashMultiset类代码示例发布时间:2022-05-21
下一篇:
Java BannerMeta类代码示例发布时间:2022-05-21
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap