@return the namespace this DDF belongs in @throws DDFException
()
| 234 | * @throws DDFException |
| 235 | */ |
| 236 | @Override |
| 237 | public String getNamespace() { |
| 238 | if (mNamespace == null) { |
| 239 | try { |
| 240 | mNamespace = this.getManager().getNamespace(); |
| 241 | } catch (Exception e) { |
| 242 | mLog.warn("Cannot retrieve namespace for DDF " + this.getName(), e); |
| 243 | } |
| 244 | } |
| 245 | return mNamespace; |
| 246 | } |
| 247 | |
| 248 | |
| 249 | /** |