You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aggregation-platform/src/com/platform/service/SimplePropertyReader.java

21 lines
571 B

package com.platform.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import com.platform.entities.SimpleConfigParamsBean;
public class SimplePropertyReader {
@Autowired @Qualifier("simpeConfig")
private SimpleConfigParamsBean configParamsBean;
public void setConfigParamsBean(SimpleConfigParamsBean configParamsBean) {
this.configParamsBean = configParamsBean;
}
public SimpleConfigParamsBean getConfigParamsBean() {
return configParamsBean;
}
}