/** * Int property accessor method to hide the configuration implementation. * * @param key property key * @param int default value * @return int value */ public static int getInt(String key, int defaultValue) { return ri.getInt(key, defaultValue); }
/** * Int property accessor method to hide the configuration implementation. * * @param String key property key * @return int value */ public static int getInt(String key) { return ri.getInt(key); }