X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=system%2Fspring%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fsystem%2Fspring%2FPropertySetter.java;h=bdd5e2c21736830a78bf23005a02adc397a9e3a8;hb=539c6d91b7a34e32c6669445d00e9275c337530a;hp=c21fe9ce258be7a75429538367d7430c30802ead;hpb=970fd53cf4ff023c72d8dac12f4985f0e638e26d;p=utils diff --git a/system/spring/src/main/java/org/wamblee/system/spring/PropertySetter.java b/system/spring/src/main/java/org/wamblee/system/spring/PropertySetter.java index c21fe9ce..bdd5e2c2 100644 --- a/system/spring/src/main/java/org/wamblee/system/spring/PropertySetter.java +++ b/system/spring/src/main/java/org/wamblee/system/spring/PropertySetter.java @@ -21,30 +21,24 @@ import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer; import java.util.Properties; - /** - * Bean that provides postprocessing of the bean factory based on a given - * set of properties. - * + * Bean that provides postprocessing of the bean factory based on a given set of + * properties. + * * @author Erik Brakkee */ class PropertySetter extends PropertyPlaceholderConfigurer { -/** - * Constructs the property setter. - * @param aProps Properties. - */ + /** + * Constructs the property setter. + * + * @param aProps + * Properties. + */ public PropertySetter(Properties aProps) { String propFile = createPropertyFile(aProps); setLocation(new StringResource(propFile)); } - /** - * DOCUMENT ME! - * - * @param aProps DOCUMENT ME! - * - * @return DOCUMENT ME! - */ public static String createPropertyFile(Properties aProps) { StringBuffer buf = new StringBuffer();