当前位置: 首页>>代码示例>>Java>>正文


Java ApplicationProperties类代码示例

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


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

示例1: DvcsStreamsActivityProvider

import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
public DvcsStreamsActivityProvider(@ComponentImport I18nResolver i18nResolver,
        @ComponentImport ApplicationProperties applicationProperties,
        @ComponentImport UserProfileAccessor userProfileAccessor,
        IssueLinker issueLinker,
        @ComponentImport TemplateRenderer templateRenderer,
        @ComponentImport PermissionManager permissionManager,
        @ComponentImport JiraAuthenticationContext jiraAuthenticationContext,
        @ComponentImport ProjectManager projectManager,
        ChangesetService changesetService,
        RepositoryService repositoryService,
        IssueAndProjectKeyManager issueAndProjectKeyManager)
{
    this.applicationProperties = applicationProperties;
    this.i18nResolver = i18nResolver;
    this.userProfileAccessor = userProfileAccessor;
    this.issueLinker = issueLinker;
    this.templateRenderer = checkNotNull(templateRenderer);
    this.permissionManager = permissionManager;
    this.jiraAuthenticationContext = jiraAuthenticationContext;
    this.projectManager = projectManager;
    this.changesetService = changesetService;
    this.repositoryService = repositoryService;
    this.issueAndProjectKeyManager = issueAndProjectKeyManager;
}
 
开发者ID:edgehosting,项目名称:jira-dvcs-connector,代码行数:25,代码来源:DvcsStreamsActivityProvider.java

示例2: ChangesetRendererImpl

import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
@Autowired
public ChangesetRendererImpl(ChangesetService changesetService, RepositoryService repositoryService, IssueLinker issueLinker,
        @ComponentImport ApplicationProperties applicationProperties, @ComponentImport TemplateRenderer templateRenderer,
        IssueAndProjectKeyManager issueAndProjectKeyManager)
{
    this.changesetService = changesetService;
    this.repositoryService = repositoryService;
    this.issueLinker = issueLinker;
    this.applicationProperties = checkNotNull(applicationProperties);
    this.templateRenderer = checkNotNull(templateRenderer);
    this.issueAndProjectKeyManager = issueAndProjectKeyManager;
}
 
开发者ID:edgehosting,项目名称:jira-dvcs-connector,代码行数:13,代码来源:ChangesetRendererImpl.java

示例3: ChangesetIssueActionFactory

import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
@Autowired
public ChangesetIssueActionFactory(RepositoryService repositoryService, IssueLinker issueLinker,
        @ComponentImport ApplicationProperties applicationProperties, ChangesetService changesetService,
        @ComponentImport TemplateRenderer templateRenderer)
{
    this.repositoryService = repositoryService;
    this.issueLinker = issueLinker;
    this.applicationProperties = checkNotNull(applicationProperties);
    this.changesetService = changesetService;
    this.templateRenderer = checkNotNull(templateRenderer);
}
 
开发者ID:edgehosting,项目名称:jira-dvcs-connector,代码行数:12,代码来源:ChangesetIssueActionFactory.java

示例4: AddUserDvcsExtensionWebPanel

import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
public AddUserDvcsExtensionWebPanel(@ComponentImport PluginAccessor pluginAccessor,
        @ComponentImport TemplateRenderer templateRenderer, @ComponentImport ApplicationProperties appProperties,
        PluginFeatureDetector featuresDetector, OrganizationService organizationService)
{
    super(pluginAccessor);
    this.templateRenderer = checkNotNull(templateRenderer);
    this.appProperties = checkNotNull(appProperties);
    this.featuresDetector = checkNotNull(featuresDetector);
    this.organizationService = checkNotNull(organizationService);
}
 
开发者ID:edgehosting,项目名称:jira-dvcs-connector,代码行数:11,代码来源:AddUserDvcsExtensionWebPanel.java

示例5: AddGitlabOrganization

import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
public AddGitlabOrganization(ApplicationProperties applicationProperties,
                             EventPublisher eventPublisher,
                             OAuthStore oAuthStore,
                             OrganizationService organizationService)
{
    super(eventPublisher);
    this.organizationService = organizationService;
    this.oAuthStore = oAuthStore;
    this.applicationProperties = applicationProperties;
}
 
开发者ID:edgehosting,项目名称:jira-dvcs-connector,代码行数:11,代码来源:AddGitlabOrganization.java

示例6: RegenerateBitbucketOauthToken

import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
public RegenerateBitbucketOauthToken(@ComponentImport EventPublisher eventPublisher,
        OrganizationService organizationService, RepositoryService repositoryService,
        @ComponentImport ApplicationProperties ap, HttpClientProvider httpClientProvider)
{
    super(eventPublisher, organizationService, repositoryService);
    this.ap = ap;
    this.httpClientProvider = httpClientProvider;
}
 
开发者ID:edgehosting,项目名称:jira-dvcs-connector,代码行数:9,代码来源:RegenerateBitbucketOauthToken.java

示例7: AddBitbucketOrganization

import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
public AddBitbucketOrganization(@ComponentImport ApplicationProperties ap,
        @ComponentImport EventPublisher eventPublisher,
        OAuthStore oAuthStore,
        OrganizationService organizationService,
        HttpClientProvider httpClientProvider)
{
    super(eventPublisher);
    this.ap = ap;
    this.organizationService = organizationService;
    this.oAuthStore = oAuthStore;
    this.httpClientProvider = httpClientProvider;
}
 
开发者ID:edgehosting,项目名称:jira-dvcs-connector,代码行数:13,代码来源:AddBitbucketOrganization.java

示例8: BitbucketLinkerImpl

import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
public BitbucketLinkerImpl(BitbucketClientBuilderFactory bitbucketClientBuilderFactory,
        ApplicationProperties applicationProperties, ProjectManager projectManager,
        final RepositoryService repositoryService)
{
    this.bitbucketClientBuilderFactory = bitbucketClientBuilderFactory;
    this.applicationProperties = applicationProperties;
    this.projectManager = projectManager;
    this.repositoryService = repositoryService;
}
 
开发者ID:edgehosting,项目名称:jira-dvcs-connector,代码行数:10,代码来源:BitbucketLinkerImpl.java

示例9: BitbucketCommunicator

import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
@Autowired
public BitbucketCommunicator(@Qualifier ("deferredBitbucketLinker") BitbucketLinker bitbucketLinker,
        @ComponentImport PluginAccessor pluginAccessor,
        BitbucketClientBuilderFactory bitbucketClientBuilderFactory, @ComponentImport ApplicationProperties ap)
{
    this.bitbucketLinker = bitbucketLinker;
    this.bitbucketClientBuilderFactory = bitbucketClientBuilderFactory;
    this.pluginVersion = DvcsConstants.getPluginVersion(checkNotNull(pluginAccessor));
    this.applicationProperties = checkNotNull(ap);
}
 
开发者ID:edgehosting,项目名称:jira-dvcs-connector,代码行数:11,代码来源:BitbucketCommunicator.java

示例10: AddGithubEnterpriseOrganization

import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
public AddGithubEnterpriseOrganization(@ComponentImport ApplicationProperties applicationProperties,
        @ComponentImport EventPublisher eventPublisher,
        OAuthStore oAuthStore,
        OrganizationService organizationService)
{
    super(eventPublisher);
    this.organizationService = organizationService;
    this.oAuthStore = oAuthStore;
    this.applicationProperties = applicationProperties;
}
 
开发者ID:edgehosting,项目名称:jira-dvcs-connector,代码行数:11,代码来源:AddGithubEnterpriseOrganization.java

示例11: AddGithubOrganization

import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
@Autowired
public AddGithubOrganization(@ComponentImport ApplicationProperties applicationProperties,
        @ComponentImport EventPublisher eventPublisher,
        @ComponentImport FeatureManager featureManager,
        OAuthStore oAuthStore,
        OrganizationService organizationService,
        @Qualifier ("githubCommunicator") GithubCommunicator githubCommunicator)
{
    super(eventPublisher);
    this.organizationService = organizationService;
    this.oAuthStore = oAuthStore;
    this.applicationProperties = applicationProperties;
    this.featureManager = featureManager;
    this.githubCommunicator = githubCommunicator;
}
 
开发者ID:edgehosting,项目名称:jira-dvcs-connector,代码行数:16,代码来源:AddGithubOrganization.java

示例12: RegenerateGithubOauthToken

import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
public RegenerateGithubOauthToken(@ComponentImport EventPublisher eventPublisher,
        OrganizationService organizationService, RepositoryService repositoryService,
        @ComponentImport ApplicationProperties applicationProperties)
{
    super(eventPublisher, organizationService, repositoryService);
    this.baseUrl = applicationProperties.getBaseUrl();
}
 
开发者ID:edgehosting,项目名称:jira-dvcs-connector,代码行数:8,代码来源:RegenerateGithubOauthToken.java

示例13:

import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
public ProjectServlet // {{{
(
	UserManager userManager,
	LoginUriProvider loginUriProvider,
	TemplateRenderer renderer,
	JiraAuthenticationContext authenticationContext,
	ApplicationProperties applicationProperties
)
{
	this.userManager = userManager;
	this.loginUriProvider = loginUriProvider;
	this.renderer = renderer;
	this.authenticationContext = authenticationContext;
	this.applicationProperties = applicationProperties;
}
 
开发者ID:jmaurice,项目名称:jira-irc-plugin,代码行数:16,代码来源:ProjectServlet.java

示例14: AllEndpointFilter

import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
public AllEndpointFilter(MetricCollector metricCollector, ApplicationProperties applicationProperties) {
    this.metricCollector = metricCollector;
    this.applicationProperties = applicationProperties;
}
 
开发者ID:AndreyVMarkelov,项目名称:jira-prometheus-exporter,代码行数:5,代码来源:AllEndpointFilter.java

示例15: BDBambooPluginImpl

import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
public BDBambooPluginImpl(final ApplicationProperties applicationProperties) {
	this.applicationProperties = applicationProperties;
}
 
开发者ID:blackducksoftware,项目名称:hub-bamboo,代码行数:4,代码来源:BDBambooPluginImpl.java


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