com.graphaware.nlp.workflow.input.WorkflowInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nlp Show documentation
Show all versions of nlp Show documentation
GraphAware Framework Module for adding NLP capabilities to Neo4j.
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.graphaware.nlp.workflow.input;
import com.graphaware.nlp.workflow.WorkflowItem;
import org.neo4j.graphdb.GraphDatabaseService;
import com.graphaware.nlp.workflow.WorkflowConfiguration;
public abstract class WorkflowInput
extends WorkflowItem
implements Iterable> {
public static final String WORKFLOW_INPUT_KEY_PREFIX = "WORKFLOW_INPUT_";
public WorkflowInput(String name, GraphDatabaseService database) {
super(name, database);
}
@Override
public String getPrefix() {
return WORKFLOW_INPUT_KEY_PREFIX;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy