Class StartupPageModel
- java.lang.Object
-
- jetbrains.buildServer.maintenance.StartupPageModel
-
public class StartupPageModel extends Object
Startup page model - a data object that is passed to all freemarker pages as a root object.This is a simple transfer object, it doesn't contain any logic.
- Author:
- Leonid Bushuev from JetBrains
-
-
Constructor Summary
Constructors Constructor Description StartupPageModel(StartupContext ctx, StartupUserSession session, String webPrefix, String pageName, StartupPageSpecificInfo specificInfo, boolean reactUISupported, DebugBean debug, boolean pageDebugging)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StartupContext
getCtx()
DebugBean
getDebug()
List<String>
getExceptionsDetails()
List<List<String>>
getExceptionsMessages()
String
getPageName()
String
getServerName()
StartupUserSession
getSession()
StartupPageSpecificInfo
getSpecificInfo()
String
getTimestamp()
String
getWebPrefix()
boolean
isExceptionsDetailsExist()
boolean
isExceptionsMessageExist()
boolean
isPageDebugging()
boolean
isReactUISupported()
boolean
isSecondaryNode()
-
-
-
Constructor Detail
-
StartupPageModel
public StartupPageModel(@NotNull StartupContext ctx, @NotNull StartupUserSession session, @NotNull String webPrefix, @NotNull String pageName, @NotNull StartupPageSpecificInfo specificInfo, boolean reactUISupported, @Nullable DebugBean debug, boolean pageDebugging)
-
-
Method Detail
-
getCtx
@NotNull public StartupContext getCtx()
-
getSession
@NotNull public StartupUserSession getSession()
-
getWebPrefix
@NotNull public String getWebPrefix()
-
isExceptionsMessageExist
public boolean isExceptionsMessageExist()
-
isExceptionsDetailsExist
public boolean isExceptionsDetailsExist()
-
getDebug
@Nullable public DebugBean getDebug()
-
isPageDebugging
public boolean isPageDebugging()
-
getPageName
@NotNull public String getPageName()
-
getSpecificInfo
@NotNull public StartupPageSpecificInfo getSpecificInfo()
-
isReactUISupported
public boolean isReactUISupported()
-
getTimestamp
@NotNull public String getTimestamp()
-
isSecondaryNode
public boolean isSecondaryNode()
-
getServerName
public String getServerName()
-
-