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
23
24
25 @Deprecated
26 @Configuration
27 public class SqlDbaAfterConfig extends AbstractSqlDbaConfig {
28
29 public static final String PHASE = "After";
30
31 @Override
32 protected String getPhase() {
33 return PHASE.toLowerCase();
34 }
35
36 @Override
37 @Bean(name = "sqlDba" + PHASE + "Executable")
38 public Executable getDbaPhaseExecutable() {
39 return getDbaExecutable();
40 }
41
42 }