You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
602 B
Java

2 months ago
package com.supervision.pdfqaserver.service;
import com.supervision.pdfqaserver.dto.EREDTO;
/**
* Cypher
*/
public interface TripleToCypherExecutor {
/**
* Cypher
* @param eredto
* @return
*/
String generateInsertCypher(EREDTO eredto);
/**
* Cypher
* @param query
* @return
*/
String generateQueryCypher(String query);
/**
* Cypher
* @param cypher
* @return
*/
void executeCypher(String cypher);
void saveERE(EREDTO eredto);
2 months ago
}