Added sandbox

This commit is contained in:
Arjen Poutsma
2006-09-24 20:30:21 +00:00
parent 82032538d9
commit 92fd483aef
2 changed files with 42 additions and 0 deletions

View File

@@ -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;
}
}