diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2019-04-11 10:18:02 +0200 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2019-04-11 10:18:02 +0200 |
commit | 00ca5ec10fbf9546cfe726a02fa9c6e4cbd39f0d (patch) | |
tree | 4cfad887c8cd737b11419de253a93135df58b7a0 /eaaf_core/src | |
parent | d781f0e89f16c650f70cc47d1ed5c4da2673b4d1 (diff) | |
download | EAAF-Components-00ca5ec10fbf9546cfe726a02fa9c6e4cbd39f0d.tar.gz EAAF-Components-00ca5ec10fbf9546cfe726a02fa9c6e4cbd39f0d.tar.bz2 EAAF-Components-00ca5ec10fbf9546cfe726a02fa9c6e4cbd39f0d.zip |
add missing beans and make a mark a service visible from child classes
Diffstat (limited to 'eaaf_core/src')
-rw-r--r-- | eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/controller/AbstractProcessEngineSignalController.java | 2 | ||||
-rw-r--r-- | eaaf_core/src/main/resources/eaaf_core.beans.xml | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/controller/AbstractProcessEngineSignalController.java b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/controller/AbstractProcessEngineSignalController.java index 6afa4fee..b87c9b78 100644 --- a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/controller/AbstractProcessEngineSignalController.java +++ b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/controller/AbstractProcessEngineSignalController.java @@ -55,7 +55,7 @@ public abstract class AbstractProcessEngineSignalController extends AbstractCont private static final Logger log = LoggerFactory.getLogger(AbstractProcessEngineSignalController.class); @Autowired(required=true) protected ProcessEngine processEngine; - @Autowired(required=true) IRequestStorage requestStorage; + @Autowired(required=true) protected IRequestStorage requestStorage; protected void signalProcessManagement(HttpServletRequest req, HttpServletResponse resp) throws IOException, EAAFException { String pendingRequestID = StringEscapeUtils.escapeHtml4(getPendingRequestId(req)); diff --git a/eaaf_core/src/main/resources/eaaf_core.beans.xml b/eaaf_core/src/main/resources/eaaf_core.beans.xml index 774af6fe..e750a49f 100644 --- a/eaaf_core/src/main/resources/eaaf_core.beans.xml +++ b/eaaf_core/src/main/resources/eaaf_core.beans.xml @@ -12,8 +12,11 @@ http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd"> + <bean id="eaafProtocolAuthenticationService" + class="at.gv.egiz.eaaf.core.impl.idp.auth.services.ProtocolAuthenticationService" /> + <bean id="httpClientFactory" - class="at.gv.egiz.eaaf.core.impl.utils.HttpClientFactory" + class="at.gv.egiz.eaaf.core.impl.utils.HttpClientFactory" /> <bean id="ProtocolFinalizationController" class="at.gv.egiz.eaaf.core.impl.idp.controller.ProtocolFinalizationController"/> |