com.rt.service.RmiService Maven / Gradle / Ivy
The newest version!
/**
*
*/
package com.rt.service;
/**
* 远程服务抽象接口
*
* @author majie
*/
public interface RmiService {
/**
* 执行远程服务接口
*
* @param context logicBean
* @return Object logicBean
* @throws Exception exception
*/
String execute(String context) throws Exception;
}