All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.graphaware.nlp.workflow.input.WorkflowInput Maven / Gradle / Ivy

There is a newer version: 3.5.4.53.18
Show newest version
/*
 * 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