return (ConfigBean)namedUniqueResult("GET_CONFIG", new Object[]{key, new Integer(site_id)});
}
public static Date dateValue(int site_id, String key) {
ConfigBean cb = getConfig(site_id, key);
return (cb==null)?null:cb.dateValue();
}
protected static int intValue(int site_id, String key) {
return intValue(site_id, key, -1);
}