Skip to content
Snippets Groups Projects
Commit 317ccc93 authored by mbrodhu's avatar mbrodhu
Browse files

refactoring

parent c4f080f2
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ public class OpenAireRecord extends RecordDelivererAbstract {
private String[] workFields;
private String relationToWorkObject;
private String identifierField;
private String pathToCinfigFile;
private String pathToConfigFile;
//Contains the setting to get connection to the ElasticSearch index. The content will be given by a configuration file
private OAI_ESClient oaiEsClient;
......@@ -108,7 +108,7 @@ public class OpenAireRecord extends RecordDelivererAbstract {
InputStream input = null;
try {
input = new FileInputStream(this.pathToCinfigFile);
input = new FileInputStream(this.pathToConfigFile);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
......@@ -537,12 +537,12 @@ public class OpenAireRecord extends RecordDelivererAbstract {
this.identifierField = identifierField;
}
public String getPathToCinfigFile() {
return pathToCinfigFile;
public String getPathToConfigFile() {
return pathToConfigFile;
}
public void setPathToCinfigFile(String pathToCinfigFile) {
this.pathToCinfigFile = pathToCinfigFile;
public void setPathToConfigFile(String pathToConfigFile) {
this.pathToConfigFile = pathToConfigFile;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment