diff options
Diffstat (limited to 'STALService/src/main/java/at/gv/egiz')
-rw-r--r-- | STALService/src/main/java/at/gv/egiz/stal/service/translator/STALTranslator.java | 4 |
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"); |