Example #1
0
 @Override
 protected LocationMapper processMethod() throws AsyncException {
   LocationMapper lMap = new LocationMapper();
   if (getGlobalConfigPath() != null)
     lMap.initFromPath(getHandler(""), getGlobalConfigPath(), false);
   return lMap;
 }
Example #2
0
 @Override
 protected LocationMapper processMethod() throws AsyncException {
   if (theMapper == null) {
     theMapper = new LocationMapper();
     if (getGlobalConfigPath() != null)
       theMapper.initFromPath(getHandler(""), getGlobalConfigPath(), false);
   }
   return theMapper;
 }