Package org.apache.wicket.resource
Interface IPropertiesLoader
-
- All Known Implementing Classes:
IsoPropertiesFilePropertiesLoader,UtfPropertiesFilePropertiesLoader,XmlFilePropertiesLoader
public interface IPropertiesLoaderProperty loaders as used by PropertiesFactory to load properties- Author:
- Juergen Donnerstag
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetFileExtension()java.util.PropertiesloadJavaProperties(java.io.InputStream inputStream)Load the properties into a java.util.Properties objectorg.apache.wicket.util.value.ValueMaploadWicketProperties(java.io.InputStream inputStream)Load the properties into a ValueMap.
-
-
-
Method Detail
-
loadWicketProperties
org.apache.wicket.util.value.ValueMap loadWicketProperties(java.io.InputStream inputStream)
Load the properties into a ValueMap.- Parameters:
inputStream-- Returns:
- Properties. Null if not applicable or not found or ...
-
loadJavaProperties
java.util.Properties loadJavaProperties(java.io.InputStream inputStream) throws java.io.IOExceptionLoad the properties into a java.util.Properties object- Parameters:
inputStream-- Returns:
- Properties. Null if not applicable or not found or ...
- Throws:
java.io.IOException
-
getFileExtension
java.lang.String getFileExtension()
- Returns:
- The file extension this loader should be applied to
-
-