Removed code that was marked as deprecated.

Also updated test that tested deprecated code.

resolves #366
This commit is contained in:
Glenn Renfro
2018-01-05 14:44:53 -05:00
committed by Michael Minella
parent 1ae7930d09
commit 76309b89ff
12 changed files with 15 additions and 86 deletions

View File

@@ -100,28 +100,6 @@ public class TaskProperties {
this.executionid = executionid;
}
/**
*
* @deprecated use getClosecontextEnabled()
* @since 1.2.0
*/
@Deprecated
public Boolean getClosecontextEnable() {
return closecontextEnabled;
}
/**
*
* @deprecated use setClosecontextEnabled()
* @since 1.2.0
*/
@Deprecated
public void setClosecontextEnable(Boolean closecontextEnable) {
logger.warn("'closecontextEnable' is deprecated. Use 'closeContextEnabled.'");
this.closecontextEnabled = closecontextEnable;
}
public Boolean getClosecontextEnabled() {
return closecontextEnabled;
}

View File

@@ -244,18 +244,6 @@ public class JdbcTaskExecutionDao implements TaskExecutionDao {
completeTaskExecution(taskExecutionId, exitCode, endTime, exitMessage, null);
}
/**
* Public setter for the table prefix property. This will be prefixed to all
* the table names before queries are executed. Defaults to
* {@link TaskProperties#DEFAULT_TABLE_PREFIX}.
*
* @param tablePrefix the tablePrefix to set
*/
@Deprecated
public void setTablePrefix(String tablePrefix) {
this.tablePrefix = tablePrefix;
}
@Override
public TaskExecution getTaskExecution(long executionId) {
try {

View File

@@ -96,18 +96,6 @@ public class TaskExecutionDaoFactoryBean implements FactoryBean<TaskExecutionDao
return true;
}
/**
* Indicates a prefix for all of the task repository's tables if the jdbc option is
* used.
*
* @param tablePrefix the string prefix for the task table names
* @deprecated Use the constructor to inject
*/
@Deprecated
public void setTablePrefix(String tablePrefix) {
this.tablePrefix = tablePrefix;
}
private void buildTaskExecutionDao(DataSource dataSource) {
DataFieldMaxValueIncrementerFactory incrementerFactory = new DefaultDataFieldMaxValueIncrementerFactory(dataSource);
this.dao = new JdbcTaskExecutionDao(dataSource, this.tablePrefix);

View File

@@ -21,7 +21,6 @@ import static org.junit.Assert.assertThat;
@RunWith(Suite.class)
@SuiteClasses({
TaskPropertiesTests.CloseContextEnableTest.class,
TaskPropertiesTests.CloseContextEnabledTest.class,
})
@@ -35,12 +34,6 @@ public class TaskPropertiesTests {
public void test() {
assertThat(taskProperties.getClosecontextEnabled(), is(false));
}
@RunWith(SpringRunner.class)
@SpringBootTest(classes={TaskPropertiesTests.Config.class}, properties = { "spring.cloud.task.closecontextEnable=false" })
@DirtiesContext
public static class CloseContextEnableTest extends TaskPropertiesTests {
}
@RunWith(SpringRunner.class)
@SpringBootTest(classes={TaskPropertiesTests.Config.class}, properties = { "spring.cloud.task.closecontextEnabled=false" })

View File

@@ -159,7 +159,7 @@ public class TaskLifecycleListenerTests {
@Test
public void testNoClosingOfContext() {
ConfigurableApplicationContext applicationContext = SpringApplication.run(new Class[]{TestDefaultConfiguration.class, PropertyPlaceholderAutoConfiguration.class},
new String[] {"--spring.cloud.task.closecontext_enable=false"});
new String[] {"--spring.cloud.task.closecontext_enabled=false"});
try {
assertTrue(applicationContext.isActive());