1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.jdbc.spring;
17
18 import org.kuali.common.util.execute.Executable;
19 import org.springframework.context.annotation.Bean;
20 import org.springframework.context.annotation.Configuration;
21
22 @Configuration
23 public class SqlDbaBeforeConfig extends AbstractSqlDbaConfig {
24
25 public static final String PHASE = "Before";
26
27 @Override
28 protected String getPhase() {
29 return PHASE.toLowerCase();
30 }
31
32 @Override
33 @Bean(name = "sqlDba" + PHASE + "Executable")
34 public Executable getDbaPhaseExecutable() {
35 return getDbaExecutable();
36 }
37
38 }