Package org.sakaiproject.component.api
Interface ServerConfigurationService.ConfigData
-
- Enclosing interface:
- ServerConfigurationService
public static interface ServerConfigurationService.ConfigDataDefines the config data holding class
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ServerConfigurationService.ConfigItem>getItems()intgetRegisteredConfigItems()String[]getSources()intgetTotalConfigItems()intgetUnRegisteredConfigItems()
-
-
-
Method Detail
-
getTotalConfigItems
int getTotalConfigItems()
- Returns:
- the total number of config items known to the service
-
getRegisteredConfigItems
int getRegisteredConfigItems()
- Returns:
- the total number of registered config items known to the service
-
getUnRegisteredConfigItems
int getUnRegisteredConfigItems()
- Returns:
- the total number of requested but not registered config items known to the service
-
getSources
String[] getSources()
- Returns:
- the array of all current source names
-
getItems
List<ServerConfigurationService.ConfigItem> getItems()
- Returns:
- the total set of all known config items
-
-