MCPcopy Create free account
hub / github.com/ddf-project/DDF / getNamespace

Method getNamespace

core/src/main/java/io/ddf/DDF.java:236–246  ·  view source on GitHub ↗

@return the namespace this DDF belongs in @throws DDFException

()

Source from the content-addressed store, hash-verified

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 /**

Callers 4

testRegisterMethod · 0.95
testCreateDDFMethod · 0.95
unpersistMethod · 0.95
createDDFWrapperMethod · 0.95

Calls 3

getManagerMethod · 0.95
getNameMethod · 0.95
getNamespaceMethod · 0.65

Tested by 2

testRegisterMethod · 0.76
testCreateDDFMethod · 0.76