@SuppressWarnings("unchecked")
public BoostFunction<Object, BoostLog, InvocationContext> getLogFactory()
{
BoostFunction<Object, BoostLog, InvocationContext> result = (BoostFunction<Object, BoostLog, InvocationContext>) get(GeneralConstants.LOG_FACTORY);
if (result == null)
result = new BoostLogFactory();
return result;
}