01: /*
02: * de.schlund.pfixcore.example.webservices.Data
03: */
04: package de.schlund.pfixcore.example.webservices;
05:
06: /**
07: * Data.java
08: *
09: * Created: 30.06.2004
10: *
11: * @author mleidig
12: */
13: public interface Data {
14:
15: public String exchangeData(String data, int strSize)
16: throws Exception;
17:
18: public String[] exchangeDataArray(String[] data, int arrSize,
19: int strSize) throws Exception;
20:
21: }
|