OPENJPA-1460: Rename the setter method

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@900890 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Pinaki Poddar 2010-01-19 18:32:45 +00:00
parent 1049796100
commit 3bff964503
2 changed files with 2 additions and 2 deletions

View File

@ -1776,7 +1776,7 @@ public class OpenJPAConfigurationImpl
this._puRootUrl = url;
}
public URL getPuRootUrl() {
public URL getPersistenceUnitRootUrl() {
return _puRootUrl;
}

View File

@ -753,7 +753,7 @@ public abstract class AbstractCFMetaDataFactory
log.trace(_loc.get("scanning-resource", rsrc));
mitr = new ResourceMetaDataIterator(rsrc, loader);
URL puUrl = repos.getConfiguration().getPuRootUrl();
URL puUrl = repos.getConfiguration().getPersistenceUnitRootUrl();
String puUrlString = puUrl == null ? null : puUrl.toString();
if (log.isTraceEnabled())
log.trace(_loc.get("pu-root-url", puUrlString));