Interface BranchFilterHelperExtension
-
- All Superinterfaces:
ServerExtension
,TeamCityExtension
- All Known Implementing Classes:
BranchesPopupController
public interface BranchFilterHelperExtension extends ServerExtension
Represents a tab for the branch filter helper popup- Since:
- 2024.12
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
fillModel(javax.servlet.http.HttpServletRequest request, org.springframework.web.servlet.ModelAndView mv)
Fill the model with data.String
getDisplayName()
String
getId()
String
getJspPath()
-
-
-
Method Detail
-
fillModel
boolean fillModel(@NotNull javax.servlet.http.HttpServletRequest request, @NotNull org.springframework.web.servlet.ModelAndView mv)
Fill the model with data. It's better to use some prefix so that names won't intercect between extensions- Returns:
- true if should include extension page in helper, false otherwise
-
getDisplayName
@NotNull String getDisplayName()
- Returns:
- The name that will be displayed in the ui
-
getJspPath
@NotNull String getJspPath()
-
getId
@NotNull String getId()
- Returns:
- unique id of the extension without spaces
-
-