25
25
import java .util .Properties ;
26
26
27
27
/**
28
- * Converts a keyed property string in the OSCache Config to a proper Java
28
+ * Converts a keyed property string in the Config to a proper Java
29
29
* object representation.
30
30
*
31
31
* @version $Id$
@@ -51,7 +51,7 @@ abstract class AbstractPropertySetter<T> {
51
51
}
52
52
53
53
/**
54
- * The OSCache Config property key.
54
+ * The Config property key.
55
55
*/
56
56
private final String propertyKey ;
57
57
@@ -67,14 +67,14 @@ abstract class AbstractPropertySetter<T> {
67
67
68
68
/**
69
69
* The default value used if something goes wrong during the conversion or
70
- * the property is not set in the OSCache config.
70
+ * the property is not set in the config.
71
71
*/
72
72
private final T defaultValue ;
73
73
74
74
/**
75
75
* Build a new property setter.
76
76
*
77
- * @param propertyKey the OSCache Config property key.
77
+ * @param propertyKey the Config property key.
78
78
* @param propertyName the {@link MemcachedConfiguration} property name.
79
79
* @param defaultValue the property default value.
80
80
*/
@@ -95,10 +95,10 @@ public AbstractPropertySetter(final String propertyKey, final String propertyNam
95
95
}
96
96
97
97
/**
98
- * Extract a property from the OSCache , converts and puts it to the
98
+ * Extract a property from the, converts and puts it to the
99
99
* {@link MemcachedConfiguration}.
100
100
*
101
- * @param config the OSCache Config
101
+ * @param config the Config
102
102
* @param memcachedConfiguration the {@link MemcachedConfiguration}
103
103
*/
104
104
public final void set (Properties config , MemcachedConfiguration memcachedConfiguration ) {
0 commit comments