jetbrains.buildServer.web.openapi
Enum WebPlace

java.lang.Object
  extended by java.lang.Enum<WebPlace>
      extended by jetbrains.buildServer.web.openapi.WebPlace
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WebPlace>

Deprecated. see PlaceId

public enum WebPlace
extends java.lang.Enum<WebPlace>


Enum Constant Summary
ADMIN_SERVER_CONFIGURATION
          Deprecated. Server configuration page, accessible by administrator only.
AGENTS_TAB
          Deprecated.  
BUILD_CONFIGURATION_TAB
          Deprecated. Tab on the Build Configuration page.
BUILD_INFO_FRAGMENT
          Deprecated. Additional content on build results page (overview tab) below build summary section You can also use method BuildDataExtensionUtil.retrieveBuild(javax.servlet.http.HttpServletRequest, jetbrains.buildServer.serverSide.SBuildServer) to get corresponding build instance
BUILD_SUMMARY
          Deprecated. Build summary section of a build results page.
BUILD_TYPE_STATISTICS_FRAGMENT
          Deprecated. Additional content on BuildType Statistics tab You can also use method BuildDataExtensionUtil.retrieveBuild(javax.servlet.http.HttpServletRequest, jetbrains.buildServer.serverSide.SBuildServer) to get corresponding build instance
MY_SETTINGS_NOTIFIER_SECTION
          Deprecated. Section with notifiers on the "My settings" page.
MY_TOOLS_SECTION
          Deprecated. TeamCity add-ons / tools section (now it contains links to IDE plugins and tray notifier)
PAGE_FOOTER
          Deprecated. Plugin will appear in the footer of TeamCity web pages.
PAGE_HEADER
          Deprecated. Plugin will appear in the <head> tag of TeamCity web pages.
USER_NOTIFIER_SETTINGS
          Deprecated. Notifier settings page for the particular user and notifier.
VIEW_LOG_TAB
          Deprecated. Additional tab on View Log page.
 
Method Summary
static WebPlace valueOf(java.lang.String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static WebPlace[] values()
          Deprecated. Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AGENTS_TAB

public static final WebPlace AGENTS_TAB
Deprecated. 

VIEW_LOG_TAB

public static final WebPlace VIEW_LOG_TAB
Deprecated. 
Additional tab on View Log page.

See Also:
as helper class to create such tabs

BUILD_SUMMARY

public static final WebPlace BUILD_SUMMARY
Deprecated. 
Build summary section of a build results page. You can also use method BuildDataExtensionUtil.retrieveBuild(javax.servlet.http.HttpServletRequest, jetbrains.buildServer.serverSide.SBuildServer) to get corresponding build instance

See Also:
as helper class to create such tabs

BUILD_INFO_FRAGMENT

public static final WebPlace BUILD_INFO_FRAGMENT
Deprecated. 
Additional content on build results page (overview tab) below build summary section You can also use method BuildDataExtensionUtil.retrieveBuild(javax.servlet.http.HttpServletRequest, jetbrains.buildServer.serverSide.SBuildServer) to get corresponding build instance

See Also:
as helper class to create such tabs

BUILD_TYPE_STATISTICS_FRAGMENT

public static final WebPlace BUILD_TYPE_STATISTICS_FRAGMENT
Deprecated. 
Additional content on BuildType Statistics tab You can also use method BuildDataExtensionUtil.retrieveBuild(javax.servlet.http.HttpServletRequest, jetbrains.buildServer.serverSide.SBuildServer) to get corresponding build instance


BUILD_CONFIGURATION_TAB

public static final WebPlace BUILD_CONFIGURATION_TAB
Deprecated. 
Tab on the Build Configuration page.

See Also:
BuildTypeTab

ADMIN_SERVER_CONFIGURATION

public static final WebPlace ADMIN_SERVER_CONFIGURATION
Deprecated. 
Server configuration page, accessible by administrator only.


USER_NOTIFIER_SETTINGS

public static final WebPlace USER_NOTIFIER_SETTINGS
Deprecated. 
Notifier settings page for the particular user and notifier.


MY_SETTINGS_NOTIFIER_SECTION

public static final WebPlace MY_SETTINGS_NOTIFIER_SECTION
Deprecated. 
Section with notifiers on the "My settings" page. Extension should have pluginName equal to the corresponding notificator type.


MY_TOOLS_SECTION

public static final WebPlace MY_TOOLS_SECTION
Deprecated. 
TeamCity add-ons / tools section (now it contains links to IDE plugins and tray notifier)


PAGE_HEADER

public static final WebPlace PAGE_HEADER
Deprecated. 
Plugin will appear in the <head> tag of TeamCity web pages.


PAGE_FOOTER

public static final WebPlace PAGE_FOOTER
Deprecated. 
Plugin will appear in the footer of TeamCity web pages.

Method Detail

values

public static WebPlace[] values()
Deprecated. 
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (WebPlace c : WebPlace.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static WebPlace valueOf(java.lang.String name)
Deprecated. 
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null