1
2
3
4
5
6
7
8
9
10
11 package it.imolinfo.jbi4cics.configuration;
12
13
14 import it.imolinfo.jbi4cics.service.ServiceContext;
15
16
17
18
19
20 public class DummyServiceContextFactory {
21
22
23
24
25 public DummyServiceContextFactory(){
26 super();
27 }
28
29
30 public static ServiceContext createServiceContext(String serviceName,Object inputBean){
31 ServiceContext serviceContext=new ServiceContext();
32 serviceContext.setInputBean(inputBean);
33 serviceContext.setServiceName(serviceName);
34 return serviceContext;
35 }
36 }