summaryrefslogtreecommitdiff
path: root/STALService/src/main
diff options
context:
space:
mode:
authorclemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2011-02-23 14:42:40 +0000
committerclemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2011-02-23 14:42:40 +0000
commit00e2e53301ceafe825a6b56a4e5818fff91f834e (patch)
tree0f1f6485a0dd2da9f35466acf190c25f66248e9e /STALService/src/main
parent24f80ff39e90925e5610a6fc4c3160a6947227d9 (diff)
downloadmocca-00e2e53301ceafe825a6b56a4e5818fff91f834e.tar.gz
mocca-00e2e53301ceafe825a6b56a4e5818fff91f834e.tar.bz2
mocca-00e2e53301ceafe825a6b56a4e5818fff91f834e.zip
merge STALTranslator changes (translate() name clash workaround)
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@908 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'STALService/src/main')
-rw-r--r--STALService/src/main/java/at/gv/egiz/stal/service/translator/STALTranslator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/STALService/src/main/java/at/gv/egiz/stal/service/translator/STALTranslator.java b/STALService/src/main/java/at/gv/egiz/stal/service/translator/STALTranslator.java
index 88a6fa4c..fec5722b 100644
--- a/STALService/src/main/java/at/gv/egiz/stal/service/translator/STALTranslator.java
+++ b/STALService/src/main/java/at/gv/egiz/stal/service/translator/STALTranslator.java
@@ -98,7 +98,7 @@ public class STALTranslator {
* @return
* @throws at.gv.egiz.stal.service.translator.TranslationException
*/
- public STALRequest translate(JAXBElement<? extends RequestType> request) throws TranslationException {
+ public STALRequest translateWSRequest(JAXBElement<? extends RequestType> request) throws TranslationException {
RequestType req = request.getValue();
if (req == null) {
throw new RuntimeException("RequestType must not be null");
@@ -138,7 +138,7 @@ public class STALTranslator {
* @return
* @throws at.gv.egiz.stal.service.translator.TranslationException
*/
- public STALResponse translate(JAXBElement<? extends ResponseType> response) throws TranslationException {
+ public STALResponse translateWSResponse(JAXBElement<? extends ResponseType> response) throws TranslationException {
ResponseType resp = response.getValue();
if (resp == null) {
throw new RuntimeException("ResponseType must not be null");