1 /**
2 * Copyright 2005-2014 The Kuali Foundation
3 *
4 * Licensed under the Educational Community License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl2.php
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.kuali.rice.kew.test;
17
18 import java.util.List;
19
20 import org.kuali.rice.kew.test.FakeServiceImpl.Invocation;
21
22 /**
23 * Interface for a fake service
24 * TODO: consider merging with {@link TestServiceInterface}/{@link GenericTestService} in KSB module
25 * @author Kuali Rice Team (rice.collab@kuali.org)
26 * @see FakeServiceImpl
27 * @see TestServiceInterface
28 */
29 public interface FakeService {
30 /**
31 * @return the invocations made up to this point
32 */
33 public List<Invocation> getInvocations();
34
35 /**
36 * An arbitrary method
37 * @param arg1 doesn't matter
38 * @param arg2 doesn't matter
39 */
40 public void method1(Object arg1, Object arg2);
41
42 /**
43 * An arbitrary method
44 * @param arg1 doesn't matter
45 * @return a {@link java.util.Date} instance
46 */
47 public Object method2(Object arg1);
48 }