Package org.sakaiproject.component.api
Interface ServerConfigurationService.ConfigHistory
-
- All Known Implementing Classes:
BasicConfigHistory
- Enclosing interface:
- ServerConfigurationService
public static interface ServerConfigurationService.ConfigHistoryDefines the config item history class
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetSource()longgetTimestamp()ObjectgetValue()intgetVersion()
-
-
-
Method Detail
-
getVersion
int getVersion()
- Returns:
- the version of the config item this history refers to (a newly created item is version 1)
-
getTimestamp
long getTimestamp()
- Returns:
- the time at which this historical version of the config item became irrelevant (this is when this version was replaced)
-
getSource
String getSource()
- Returns:
- the source name for this version of the config item
-
getValue
Object getValue()
- Returns:
- the value of the config item in this version of it
-
-