
com.harium.suneidesis.task.database.KnowledgeTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Project to represent knowledge
The newest version!
package com.harium.suneidesis.task.database;
import com.harium.suneidesis.repository.KnowledgeBase;
import com.harium.suneidesis.task.BaseTask;
public abstract class KnowledgeTask extends BaseTask {
protected final KnowledgeBase database;
public KnowledgeTask(String name, KnowledgeBase database) {
super(name);
this.database = database;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy