本文整理汇总了Java中com.atlassian.bitbucket.auth.AuthenticationContext类的典型用法代码示例。如果您正苦于以下问题:Java AuthenticationContext类的具体用法?Java AuthenticationContext怎么用?Java AuthenticationContext使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
AuthenticationContext类属于com.atlassian.bitbucket.auth包,在下文中一共展示了AuthenticationContext类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: Lfs
import com.atlassian.bitbucket.auth.AuthenticationContext; //导入依赖的package包/类
public Lfs(RepositorySupplier repoSupplier,
ApplicationPropertiesService appPropService,
AuthenticationContext authContext,
PermissionService permissionService,
ProjectSupplier projectSupplier)
{
this.repoSupplier = repoSupplier;
this.appPropService = appPropService;
this.home = appPropService.getDataDir();
this.lfsStore = appPropService.getDataDir()+"/lfs";
this.bitbucketUser = authContext.getCurrentUser();
this.permissionService = permissionService;
this.projectSupplier = projectSupplier;
this.baseUrl = appPropService.getBaseUrl().toString();
}
示例2: AdminConfigResource
import com.atlassian.bitbucket.auth.AuthenticationContext; //导入依赖的package包/类
public AdminConfigResource(UserManager userManager, AuthenticationContext stashAuthenticationContext,
PluginSettingsService pluginSettingsService) {
super();
this.userManager = userManager;
this.stashAuthenticationContext = stashAuthenticationContext;
this.pluginSettingsService = pluginSettingsService;
}
示例3: KeyDetailsResource
import com.atlassian.bitbucket.auth.AuthenticationContext; //导入依赖的package包/类
public KeyDetailsResource(EnterpriseSshKeyService enterpriseKeyService,
AuthenticationContext stashAuthenticationContext, UserService userService) {
this.enterpriseKeyService = enterpriseKeyService;
this.stashAuthenticationContext = stashAuthenticationContext;
this.userService = userService;
}