File tree Expand file tree Collapse file tree
src/main/java/sprout/data/orm Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11package sprout .data .orm .action .internal ;
22
33import sprout .data .orm .action .Executable ;
4+ import sprout .data .orm .engine .ComparableExecutable ;
45import sprout .data .orm .engine .Parameter ;
56
67import java .sql .Connection ;
@@ -24,6 +25,11 @@ public List<Parameter<?>> getParameters() {
2425 return parameters ;
2526 }
2627
28+ @ Override
29+ public Type getActionType () {
30+ return null ;
31+ }
32+
2733 @ Override
2834 void execute (Connection connection ) throws SQLException {
2935
@@ -44,6 +50,11 @@ public String getSecondarySort() {
4450 return "" ;
4551 }
4652
53+ @ Override
54+ public List <ComparableExecutable > getDependencies () {
55+ return List .of ();
56+ }
57+
4758 @ Override
4859 public int compareTo (Executable o ) {
4960 return 0 ;
Original file line number Diff line number Diff line change 1+ package sprout .data .orm .spi .annotation ;
2+
3+ public @interface Column {
4+ }
Original file line number Diff line number Diff line change 1+ package sprout .data .orm .spi .annotation ;
2+
3+ public @interface Entity {
4+ }
Original file line number Diff line number Diff line change 1+ package sprout .data .orm .spi .annotation ;
2+
3+ public @interface Id {
4+ }
Original file line number Diff line number Diff line change 1+ package sprout .data .orm .spi .annotation ;
2+
3+ public @interface Index {
4+ }
Original file line number Diff line number Diff line change 1+ package sprout .data .orm .spi .annotation ;
2+
3+ public @interface JoinColumn {
4+ }
Original file line number Diff line number Diff line change 1+ package sprout .data .orm .spi .annotation ;
2+
3+ public @interface ManyToOne {
4+ }
Original file line number Diff line number Diff line change 1+ package sprout .data .orm .spi .annotation ;
2+
3+ public @interface OneToMany {
4+ }
Original file line number Diff line number Diff line change 1+ package sprout .data .orm .spi .annotation ;
2+
3+ public @interface OneToOne {
4+ }
Original file line number Diff line number Diff line change 1+ package sprout .data .orm .spi .annotation ;
2+
3+ public @interface Table {
4+ }
You can’t perform that action at this time.
0 commit comments