Tabnine Logo
PositionConstraint.after
Code IndexAdd Tabnine to your IDE (free)

How to use
after
method
in
jetbrains.buildServer.web.openapi.PositionConstraint

Best Java code snippets using jetbrains.buildServer.web.openapi.PositionConstraint.after (Showing top 5 results out of 315)

origin: org.jfrog.teamcity/teamcity-artifactory-plugin-server

public ArtifactoryGlobalServerConfigTab(final @NotNull WebControllerManager controllerManager,
                    final @NotNull ArtifactoryServerListener serverListener,
                    final @NotNull SecurityContext securityContext) {
  super(controllerManager, PlaceId.ADMIN_SERVER_CONFIGURATION_TAB, ConstantValues.NAME,
      "artifactoryGlobalServerConfigTab.jsp",
      "Artifactory");
  this.securityContext = securityContext;
  configPersistenceManager = serverListener.getConfigModel();
  setPosition(PositionConstraint.after("serverConfigGeneral"));
  register();
  controllerManager.registerController("/admin/artifactory/serverConfigTab.html",
      new ArtifactoryGlobalServerConfigController(configPersistenceManager));
}
origin: com.blackducksoftware.integration/hub-teamcity-server

public HubGlobalServerConfigTab(@NotNull final WebControllerManager controllerManager,
    @NotNull final HubServerListener codecenterListener) {
  super(controllerManager, PlaceId.ADMIN_SERVER_CONFIGURATION_TAB, "hub", "hubGlobalServerConfigTab.jsp", "Hub");
  setPosition(PositionConstraint.after("serverConfigGeneral"));
  register();
  configPersistenceManager = codecenterListener.getConfigManager();
  controllerManager.registerController("/admin/hub/serverHubConfigTab.html",
      new HubGlobalServerConfigController(configPersistenceManager));
}
origin: Tapadoo/TCSlackNotifierPlugin

public SlackAdminPage(PagePlaces pagePlaces, PluginDescriptor descriptor , SlackConfigProcessor configProcessor) {
  super(pagePlaces);
  setPluginName("slackNotifier");
  setIncludeUrl(descriptor.getPluginResourcesPath("/admin/slackAdminPage.jsp"));
  setTabTitle("Slack Notifier");
  setPosition(PositionConstraint.after("clouds", "email", "jabber"));
  register();
  this.configProcesser = configProcessor ;
}
origin: tcplugins/tcWebHooks

public WebHookAdminPage(@NotNull PagePlaces pagePlaces, 
               @NotNull PluginDescriptor descriptor,
               @NotNull WebHookHistoryRepository webHookHistoryRepository,
               @NotNull WebHookTemplateManager webHookTemplateManager
               ) {
  super(pagePlaces);
  this.myWebHookHistoryRepository = webHookHistoryRepository;
  this.myWebHookTemplateManager = webHookTemplateManager;
  setPluginName(TC_WEB_HOOK_REST_API_ADMIN_ID);
  setIncludeUrl(descriptor.getPluginResourcesPath("WebHook/adminTab.jsp"));
  addCssFile(descriptor.getPluginResourcesPath("WebHook/css/styles.css"));
  addCssFile(descriptor.getPluginResourcesPath("WebHook/css/graph-colours.css"));
  addJsFile(descriptor.getPluginResourcesPath("WebHook/js/Chart.bundle.min.js"));
  addJsFile(descriptor.getPluginResourcesPath("WebHook/js/admin-chart.js"));
  setTabTitle("WebHooks");
  setPosition(PositionConstraint.after("clouds", "email", "jabber", "plugins", "tcDebRepository"));
  register();
}
origin: tcplugins/tcWebHooks

public WebHookRestApiAdminPage(
          @NotNull SBuildServer server,
          @NotNull PagePlaces pagePlaces, 
          @NotNull PluginDescriptor descriptor,
          @NotNull WebHookTeamCityRestApiZipPluginFixer webHookTeamCityRestApiZipPluginFixer
        ) {
  super(pagePlaces);
  myPluginFixer = webHookTeamCityRestApiZipPluginFixer;
  setPluginName(TC_WEB_HOOK_REST_API_ADMIN_ID);
  setIncludeUrl(descriptor.getPluginResourcesPath("WebHookRestApi/adminTab.jsp"));
  addCssFile(descriptor.getPluginResourcesPath("WebHookRestApi/css/tcWebHooksApi.css"));
  addJsFile(descriptor.getPluginResourcesPath("WebHookRestApi/restApiHealthStatus.js"));
  if (isRestartable(server)) {
    addJsFile("/js/bs/serverRestart.js");
  } else {
    addJsFile(descriptor.getPluginResourcesPath("WebHookRestApi/serverNoRestart.js"));
  }
  setTabTitle("WebHooks REST API");
  setPosition(PositionConstraint.after("clouds", "email", "jabber", "plugins", "tcWebHooks"));
  register();
}
jetbrains.buildServer.web.openapiPositionConstraintafter

Popular methods of PositionConstraint

  • between

Popular in Java

  • Updating database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • setContentView (Activity)
  • getApplicationContext (Context)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • String (java.lang)
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • Top 25 Plugins for Webstorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now