Skip to content

Commit

Permalink
chore: fixes empty java file
Browse files Browse the repository at this point in the history
  • Loading branch information
RichHawkins committed Mar 10, 2024
1 parent e338185 commit f22bae2
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1,22 @@
package com.codedifferently.lesson5.dataprovider;

import java.util.Map;
import org.springframework.stereotype.Service;

@Service
public class RichHawkins extends DataProvider {
public String getProviderName() {
return "richhawkins";
}

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

0 comments on commit f22bae2

Please sign in to comment.