diff options
author | James Moger <james.moger@gitblit.com> | 2014-04-17 19:30:46 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2014-04-17 19:30:46 -0400 |
commit | 3a649921c7772abf1414eca08276ab18beac9bcc (patch) | |
tree | 068dcbe36d145d98e03b73877ae1a9b85acc5ebf /src/main/java/com/gitblit/manager/IRuntimeManager.java | |
parent | cf4004e8d64399f6fc722fcb313eaaae6a65fa20 (diff) | |
download | gitblit-3a649921c7772abf1414eca08276ab18beac9bcc.tar.gz gitblit-3a649921c7772abf1414eca08276ab18beac9bcc.zip |
Update javadoc
Diffstat (limited to 'src/main/java/com/gitblit/manager/IRuntimeManager.java')
-rw-r--r-- | src/main/java/com/gitblit/manager/IRuntimeManager.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/java/com/gitblit/manager/IRuntimeManager.java b/src/main/java/com/gitblit/manager/IRuntimeManager.java index 94ce3800..acd3a576 100644 --- a/src/main/java/com/gitblit/manager/IRuntimeManager.java +++ b/src/main/java/com/gitblit/manager/IRuntimeManager.java @@ -34,6 +34,7 @@ public interface IRuntimeManager extends IManager { * Returns the preferred timezone for the Gitblit instance. * * @return a timezone + * @since 1.4.0 */ TimeZone getTimezone(); @@ -42,6 +43,7 @@ public interface IRuntimeManager extends IManager { * or if it is merely a repository viewer. * * @return true if Gitblit is serving repositories + * @since 1.4.0 */ boolean isServingRepositories(); @@ -49,6 +51,7 @@ public interface IRuntimeManager extends IManager { * Determine if this Gitblit instance is running in debug mode * * @return true if Gitblit is running in debug mode + * @since 1.4.0 */ boolean isDebugMode(); @@ -56,15 +59,23 @@ public interface IRuntimeManager extends IManager { * Returns the boot date of the Gitblit server. * * @return the boot date of Gitblit + * @since 1.4.0 */ Date getBootDate(); + /** + * Returns the server status. + * + * @return the server status + * @since 1.4.0 + */ ServerStatus getStatus(); /** * Returns the descriptions/comments of the Gitblit config settings. * * @return SettingsModel + * @since 1.4.0 */ ServerSettings getSettingsModel(); @@ -72,6 +83,7 @@ public interface IRuntimeManager extends IManager { * Returns the file object for the specified configuration key. * * @return the file + * @since 1.4.0 */ File getFileOrFolder(String key, String defaultFileOrFolder); @@ -83,6 +95,7 @@ public interface IRuntimeManager extends IManager { * access based on environment or some other indicator. * * @return the file + * @since 1.4.0 */ File getFileOrFolder(String fileOrFolder); @@ -90,6 +103,7 @@ public interface IRuntimeManager extends IManager { * Returns the runtime settings. * * @return settings + * @since 1.4.0 */ IStoredSettings getSettings(); @@ -98,6 +112,7 @@ public interface IRuntimeManager extends IManager { * * @param settings * @return true if the update succeeded + * @since 1.4.0 */ boolean updateSettings(Map<String, String> updatedSettings); }
\ No newline at end of file |