01: package de.schlund.pfixcore.example.webservices;
02:
03: import de.schlund.pfixcore.workflow.ContextResource;
04:
05: public interface ContextData extends ContextResource {
06:
07: public String exchangeData(String data, int strSize)
08: throws Exception;
09:
10: public String[] exchangeDataArray(String[] data, int arrSize,
11: int strSize) throws Exception;
12:
13: }
|