Skip to content

Commit

Permalink
chore: added jada's white data provider
Browse files Browse the repository at this point in the history
  • Loading branch information
Nelshulla committed Mar 11, 2024
1 parent c3bf9dc commit 3c8a1aa
Showing 1 changed file with 8 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.codedifferently.lesson5.dataprovider;

import com.codedifferently.lesson5.dataprovider.DataProvider;
import java.math.BigInteger;
import java.util.Map;
import org.springframework.stereotype.Service;

Expand All @@ -12,19 +12,12 @@ public String getProviderName() {

public Map<String, Class> getColumnTypeByName() {
return Map.of(
"column1",
Integer.class,
"column2",
String.class,
"column3",
Boolean.class,
"column4",
Float.class,
"column5",
Double.class,
"column6",
Long.class,
"column7",
Short.class);
"column1", Integer.class,
"column2", String.class,
"column3", Float.class,
"column4", Boolean.class,
"column5", Double.class,
"column6", BigInteger.class,
"column7", Long.class);
}
}

0 comments on commit 3c8a1aa

Please sign in to comment.