public void setProperty(String prop, Object value) {
if (!setKernelProperty(this, prop, value)) {
if (!setKernelProperty(this.getFetchPlan(), prop, value)) {
Log log = getConfiguration().getLog(OpenJPAConfiguration.LOG_RUNTIME);
if (log.isWarnEnabled()) {
log.warn(_loc.get("ignored-em-prop", prop, value == null ? "" : value.getClass()+":" + value));
}
}
}
}