本文整理汇总了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;
}
示例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;
}
示例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);
}
示例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);
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}
示例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);
}
示例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;
}
示例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;
}
示例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();
}
示例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;
}
示例14: AllEndpointFilter
import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
public AllEndpointFilter(MetricCollector metricCollector, ApplicationProperties applicationProperties) {
this.metricCollector = metricCollector;
this.applicationProperties = applicationProperties;
}
示例15: BDBambooPluginImpl
import com.atlassian.sal.api.ApplicationProperties; //导入依赖的package包/类
public BDBambooPluginImpl(final ApplicationProperties applicationProperties) {
this.applicationProperties = applicationProperties;
}