From 92fd483aefd22bfcb2cd16484ecbd2f3bead80c8 Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Sun, 24 Sep 2006 20:30:21 +0000 Subject: [PATCH] Added sandbox --- sandbox/pom.xml | 11 +++++++ .../client/MarshallingWebServiceTemplate.java | 31 +++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 sandbox/pom.xml create mode 100644 sandbox/src/main/java/org/springframework/ws/client/MarshallingWebServiceTemplate.java diff --git a/sandbox/pom.xml b/sandbox/pom.xml new file mode 100644 index 00000000..d5f3d193 --- /dev/null +++ b/sandbox/pom.xml @@ -0,0 +1,11 @@ + + + spring-ws + org.springframework.ws + 1.0-m3-SNAPSHOT + + 4.0.0 + spring-ws-sandbox + jar + Spring WS Sandbox + \ No newline at end of file diff --git a/sandbox/src/main/java/org/springframework/ws/client/MarshallingWebServiceTemplate.java b/sandbox/src/main/java/org/springframework/ws/client/MarshallingWebServiceTemplate.java new file mode 100644 index 00000000..4128ba86 --- /dev/null +++ b/sandbox/src/main/java/org/springframework/ws/client/MarshallingWebServiceTemplate.java @@ -0,0 +1,31 @@ +package org.springframework.ws.client; + +import org.springframework.oxm.Marshaller; +import org.springframework.oxm.Unmarshaller; +import org.springframework.oxm.jaxb1.impl.FlightsImpl; + +/** + * @author Arjen Poutsma + */ +public class MarshallingWebServiceTemplate { + private Marshaller marshaller; + private Unmarshaller unmarshaller; + + public Marshaller getMarshaller() { + return marshaller; + } + + public void setMarshaller(Marshaller marshaller) { + this.marshaller = marshaller; + } + + public Unmarshaller getUnmarshaller() { + return unmarshaller; + } + + public void setUnmarshaller(Unmarshaller unmarshaller) { + this.unmarshaller = unmarshaller; + } + + +}