]> git.argeo.org Git - gpl/argeo-slc.git/blob - detached/DetachedXmlConverter.java
Prepare next development cycle
[gpl/argeo-slc.git] / detached / DetachedXmlConverter.java
1 package org.argeo.slc.detached;
2
3 import javax.xml.transform.Result;
4 import javax.xml.transform.Source;
5
6 public interface DetachedXmlConverter {
7 public void marshallCommunication(DetachedCommunication detCom,
8 Result result);
9
10 public DetachedCommunication unmarshallCommunication(Source source);
11 }