Hi All,
I need create a table in plugins But I dont create that because of this
code:
if (WebPage.class.equals(persistentClass)) {
schema = conf.get("storage.schema.webpage", "webpage");
} else if (Host.class.equals(persistentClass)) {
schema = conf.get("storage.schema.host", "host");
} else {
throw new UnsupportedOperationException("Unable to create store
for class " + persistentClass);
}
Other methods are generic in StorageUtils.java What is the reasons of
support other store creation ?
Thanks
Talat