Package com.atlassian.confluence.setup
Interface BootstrapStatusProvider
-
- All Known Implementing Classes:
BootstrapStatusProviderImpl
public interface BootstrapStatusProvider
BootstrapStatusProvider is responsible to expose only required methods of DefaultBootstrapManager. Purposely built for use in Velocity files with exposing only limited methods.- Since:
- 7.20.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
databaseContainsExistingData(Connection var1)
com.atlassian.config.ApplicationConfiguration
getApplicationConfig()
String
getApplicationHome()
String
getFilePathProperty(String var1)
String
getHibernateDialect()
Returns the SQL dialect being used by Hibernate.Object
getProperty(String var1)
com.atlassian.config.setup.SetupPersister
getSetupPersister()
String
getWebAppContextPath()
boolean
isBootstrapped()
boolean
isSetupComplete()
boolean
isWebAppContextPathSet()
-
-
-
Method Detail
-
isSetupComplete
boolean isSetupComplete()
-
isBootstrapped
boolean isBootstrapped()
-
getHibernateDialect
String getHibernateDialect()
Returns the SQL dialect being used by Hibernate.- Returns:
- see above
- See Also:
AvailableSettings.DIALECT
-
getWebAppContextPath
String getWebAppContextPath()
-
isWebAppContextPathSet
boolean isWebAppContextPathSet()
-
getApplicationConfig
com.atlassian.config.ApplicationConfiguration getApplicationConfig()
-
getSetupPersister
com.atlassian.config.setup.SetupPersister getSetupPersister()
-
getApplicationHome
String getApplicationHome()
-
databaseContainsExistingData
boolean databaseContainsExistingData(Connection var1)
-
-