Skip to content

Commit 7e04b3d

Browse files
author
a-brandt
committed
added new options
1 parent 9d04c7a commit 7e04b3d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/main/java/com/arangodb/util/ImportOptionsRaw.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,18 @@
22

33
import java.util.Map;
44

5-
public class ImportOptionsRaw extends ImportOptions {
5+
public class ImportOptionsRaw extends ImportOptionsJson {
66

77
public enum ImportType {
88
DOCUMENTS, LIST, AUTO
99
}
1010

1111
private ImportType importType;
1212

13+
public ImportOptionsRaw(ImportType importType) {
14+
this.importType = importType;
15+
}
16+
1317
/**
1418
* Determines how the body of the request will be interpreted. type can have
1519
* the following values:

0 commit comments

Comments
 (0)