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


Java I18nService类代码示例

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


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

示例1: TeamctiyRest

import com.atlassian.bitbucket.i18n.I18nService; //导入依赖的package包/类
public TeamctiyRest(
        I18nService i18nService,
        TeamcityConnector connector) {    
  super(i18nService);
  this.connector = connector;
}
 
开发者ID:TrimbleSolutionsCorporation,项目名称:TeamcityTriggerHook,代码行数:7,代码来源:TeamctiyRest.java

示例2: SlackGlobalSettingsServlet

import com.atlassian.bitbucket.i18n.I18nService; //导入依赖的package包/类
public SlackGlobalSettingsServlet(PageBuilderService pageBuilderService,
                                  SlackGlobalSettingsService slackGlobalSettingsService,
                                  SoyTemplateRenderer soyTemplateRenderer,
                                  PermissionValidationService validationService,
                                  I18nService i18nService) {
    this.pageBuilderService = pageBuilderService;
    this.slackGlobalSettingsService = slackGlobalSettingsService;
    this.soyTemplateRenderer = soyTemplateRenderer;
    this.validationService = validationService;
    this.i18nService = i18nService;

}
 
开发者ID:pragbits,项目名称:stash2slack,代码行数:13,代码来源:SlackGlobalSettingsServlet.java

示例3: SlackSettingsServlet

import com.atlassian.bitbucket.i18n.I18nService; //导入依赖的package包/类
public SlackSettingsServlet(PageBuilderService pageBuilderService,
                                SlackSettingsService slackSettingsService,
                                RepositoryService repositoryService,
                                SoyTemplateRenderer soyTemplateRenderer,
                                PermissionValidationService validationService,
                                I18nService i18nService) {
    this.pageBuilderService = pageBuilderService;
    this.slackSettingsService = slackSettingsService;
    this.repositoryService = repositoryService;
    this.soyTemplateRenderer = soyTemplateRenderer;
    this.validationService = validationService;
    this.i18nService = i18nService;
}
 
开发者ID:pragbits,项目名称:stash2slack,代码行数:14,代码来源:SlackSettingsServlet.java

示例4: TokenAuthenticationHandler

import com.atlassian.bitbucket.i18n.I18nService; //导入依赖的package包/类
public TokenAuthenticationHandler(UserService userService, I18nService i18nService, Utils utils,
                                  UserConfigDao userDao, AdminConfigDao adminDao) {
  this.userService = userService;
  this.i18nService = i18nService;
  this.utils = utils;
  this.userDao = userDao;
  this.adminDao = adminDao;
}
 
开发者ID:monitorjbl,项目名称:stash-token-auth,代码行数:9,代码来源:TokenAuthenticationHandler.java

示例5: NotificationService

import com.atlassian.bitbucket.i18n.I18nService; //导入依赖的package包/类
public NotificationService(MailService mailService, UserService userService,
                           ApplicationPropertiesService applicationPropertiesService, I18nService i18nService, PluginSettingsService pluginSettingsService) {
    this.mailService = mailService;
    this.userService = userService;
    this.applicationPropertiesService = applicationPropertiesService;
    this.i18nService = i18nService;
    this.pluginSettingsService = pluginSettingsService;
}
 
开发者ID:libertymutual,项目名称:ssh-key-enforcer-stash,代码行数:9,代码来源:NotificationService.java

示例6: PullRequestSquashMergeRequestCheck

import com.atlassian.bitbucket.i18n.I18nService; //导入依赖的package包/类
@Autowired
public PullRequestSquashMergeRequestCheck(@ComponentImport PullRequestService pullRequestService, PullRequestSquashSettings pullRequestSquashSettings, @ComponentImport I18nService i18Service){
    this.pullRequestService = pullRequestService;
    this.pullRequestSquashSettings = pullRequestSquashSettings;
    this.i18Service = i18Service;
}
 
开发者ID:christiangalsterer,项目名称:bitbucket-prsquash-plugin,代码行数:7,代码来源:PullRequestSquashMergeRequestCheck.java

示例7: PullRequestSquashRestFragment

import com.atlassian.bitbucket.i18n.I18nService; //导入依赖的package包/类
@Autowired
public PullRequestSquashRestFragment(PullRequestSquashSettings settings, @ComponentImport I18nService i18nService) {
    this.settings = settings;
    this.i18nService = i18nService;
}
 
开发者ID:christiangalsterer,项目名称:bitbucket-prsquash-plugin,代码行数:6,代码来源:PullRequestSquashRestFragment.java

示例8: FileSizeHookValidator

import com.atlassian.bitbucket.i18n.I18nService; //导入依赖的package包/类
public FileSizeHookValidator(I18nService i18n) {
    this.i18n = i18n;
}
 
开发者ID:christiangalsterer,项目名称:stash-filehooks-plugin,代码行数:4,代码来源:FileSizeHookValidator.java

示例9: FileNameHook

import com.atlassian.bitbucket.i18n.I18nService; //导入依赖的package包/类
public FileNameHook(GitCommandBuilderFactory builderFactory, CommitService commitService, ChangesetService changesetService, I18nService i18n, GitScmConfig gitScmConfig) {
    this.changesetService = changesetService;
    this.i18n = i18n;
    this.commitService = commitService;
    this.mergeBaseResolver = new MergeBaseResolver(builderFactory, gitScmConfig, commitService); 
}
 
开发者ID:christiangalsterer,项目名称:stash-filehooks-plugin,代码行数:7,代码来源:FileNameHook.java

示例10: GeneralEventListener

import com.atlassian.bitbucket.i18n.I18nService; //导入依赖的package包/类
public GeneralEventListener(EnterpriseSshKeyService enterpriseSshKeyService,I18nService i18nService) {
    this.enterpriseSshKeyService = enterpriseSshKeyService;
    this.i18nService = i18nService;
}
 
开发者ID:libertymutual,项目名称:ssh-key-enforcer-stash,代码行数:5,代码来源:GeneralEventListener.java


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