Interface Server
-
- All Known Implementing Classes:
Server.NotImplemented
public interface Server
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Server.NotImplemented
A default implementation which allows source compatibility when adding new methods to the interface.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConsistencyCheckInfo
checkConsistency(ConsistencyCheckInput in)
DiffPreferencesInfo
getDefaultDiffPreferences()
EditPreferencesInfo
getDefaultEditPreferences()
GeneralPreferencesInfo
getDefaultPreferences()
ServerInfo
getInfo()
String
getVersion()
Returns version of server.DiffPreferencesInfo
setDefaultDiffPreferences(DiffPreferencesInfo in)
EditPreferencesInfo
setDefaultEditPreferences(EditPreferencesInfo in)
GeneralPreferencesInfo
setDefaultPreferences(GeneralPreferencesInfo in)
List<TopMenu.MenuEntry>
topMenus()
-
-
-
Method Detail
-
getVersion
String getVersion() throws RestApiException
Returns version of server.- Throws:
RestApiException
-
getInfo
ServerInfo getInfo() throws RestApiException
- Throws:
RestApiException
-
getDefaultPreferences
GeneralPreferencesInfo getDefaultPreferences() throws RestApiException
- Throws:
RestApiException
-
setDefaultPreferences
GeneralPreferencesInfo setDefaultPreferences(GeneralPreferencesInfo in) throws RestApiException
- Throws:
RestApiException
-
getDefaultDiffPreferences
DiffPreferencesInfo getDefaultDiffPreferences() throws RestApiException
- Throws:
RestApiException
-
setDefaultDiffPreferences
DiffPreferencesInfo setDefaultDiffPreferences(DiffPreferencesInfo in) throws RestApiException
- Throws:
RestApiException
-
getDefaultEditPreferences
EditPreferencesInfo getDefaultEditPreferences() throws RestApiException
- Throws:
RestApiException
-
setDefaultEditPreferences
EditPreferencesInfo setDefaultEditPreferences(EditPreferencesInfo in) throws RestApiException
- Throws:
RestApiException
-
checkConsistency
ConsistencyCheckInfo checkConsistency(ConsistencyCheckInput in) throws RestApiException
- Throws:
RestApiException
-
topMenus
List<TopMenu.MenuEntry> topMenus() throws RestApiException
- Throws:
RestApiException
-
-