|
|
|
|
|
|
|
|
import cn.com.taiji.core.model.comm.protocol.SignServiceType; |
|
|
import cn.com.taiji.core.model.comm.protocol.SignServiceType; |
|
|
import cn.com.taiji.core.model.comm.protocol.inss.InssServiceSystem; |
|
|
import cn.com.taiji.core.model.comm.protocol.inss.InssServiceSystem; |
|
|
import cn.com.taiji.core.model.comm.protocol.inss.InssServiceType; |
|
|
import cn.com.taiji.core.model.comm.protocol.inss.InssServiceType; |
|
|
|
|
|
import cn.com.taiji.inss.manager.handler.InstServiceHandler; |
|
|
import cn.com.taiji.inss.manager.handler.VfjServiceHandler; |
|
|
import cn.com.taiji.inss.manager.handler.VfjServiceHandler; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
import org.springframework.stereotype.Service; |
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
public class MyCommHandleManager extends AbstractCommHandleManager { |
|
|
public class MyCommHandleManager extends AbstractCommHandleManager { |
|
|
@Autowired |
|
|
@Autowired |
|
|
private VfjServiceHandler vfjServiceHandler; |
|
|
private VfjServiceHandler vfjServiceHandler; |
|
|
|
|
|
@Autowired |
|
|
|
|
|
private InstServiceHandler instServiceHandler; |
|
|
|
|
|
|
|
|
public MyCommHandleManager() { |
|
|
public MyCommHandleManager() { |
|
|
super(InssServiceSystem.INSS); |
|
|
super(InssServiceSystem.INSS); |
|
|
|
|
|
|
|
|
@PostConstruct |
|
|
@PostConstruct |
|
|
public void init() { |
|
|
public void init() { |
|
|
registerJsonService(vfjServiceHandler); |
|
|
registerJsonService(vfjServiceHandler); |
|
|
|
|
|
registerJsonService(instServiceHandler); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |