Skip to content

Commit 4bb997e

Browse files
georgeajitgeorgeajit
authored andcommitted
No Task - Method name changes
1 parent 5bee686 commit 4bb997e

File tree

1 file changed

+5
-5
lines changed
  • marklogic-client-api-functionaltests/src/test/java/com/marklogic/client/datamovement/functionaltests

1 file changed

+5
-5
lines changed

marklogic-client-api-functionaltests/src/test/java/com/marklogic/client/datamovement/functionaltests/TestSplitters.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,7 @@ public void testCSVSplitterWriteOperationAndUriMaker() throws Exception {
797797
JacksonCSVSplitter splitter = new JacksonCSVSplitter();
798798
JacksonCSVSplitter.UriMaker uriMaker = new QADocUriFromHandle();
799799
uriMaker.setInputAfter("/QAFolder/");
800-
uriMaker.setInputName("SacMetroHomeSale");
800+
uriMaker.setSplitFilename("SacMetroHomeSale");
801801
splitter.setUriMaker(uriMaker);
802802
Stream<DocumentWriteOperation> contentStream1 = splitter.splitWriteOperations(fileInputStream);
803803

@@ -844,8 +844,8 @@ public String makeUri(long num, JacksonHandle handle) {
844844

845845
if (this.getInputAfter() != null && this.getInputAfter().length() > 0)
846846
docUri.append(this.getInputAfter());
847-
if (this.getInputName() != null && this.getInputName().length() > 0)
848-
docUri.append(this.getInputName());
847+
if (this.getSplitFilename() != null && this.getSplitFilename().length() > 0)
848+
docUri.append(this.getSplitFilename());
849849

850850
// Append latitude and longitude with uriDirectory and uriBaseName
851851
//System.out.println("Handle is " + handle.toString());
@@ -871,12 +871,12 @@ public void setInputAfter(String base) {
871871
}
872872

873873
@Override
874-
public String getInputName() {
874+
public String getSplitFilename() {
875875
return uriBaseName;
876876
}
877877

878878
@Override
879-
public void setInputName(String name) {
879+
public void setSplitFilename(String name) {
880880
uriBaseName = name;
881881
}
882882
}

0 commit comments

Comments
 (0)