01: package de.mcs.jmeasurement.test.proxy;
02:
03: /*
04: * MCS Media Computer Software Copyright (c) 2006 by MCS
05: * -------------------------------------- Created on 26.07.2006 by W.Klaas
06: *
07: * Licensed under the Apache License, Version 2.0 (the "License"); you may not
08: * use this file except in compliance with the License. You may obtain a copy of
09: * the License at
10: *
11: * http://www.apache.org/licenses/LICENSE-2.0
12: *
13: * Unless required by applicable law or agreed to in writing, software
14: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
16: * License for the specific language governing permissions and limitations under
17: * the License.
18: */
19:
20: public interface ITestProxy {
21: String echo(String line);
22:
23: void echoNow(String line);
24:
25: void exceptionNow() throws ProxyException;
26:
27: String iTestMethode(String line);
28: }
|