colesico.framework.rpc.codegen.model.RpcServiceElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of colesico-rpc Show documentation
Show all versions of colesico-rpc Show documentation
Colesico framework Remote Procedure Call for Services
The newest version!
package colesico.framework.rpc.codegen.model;
import colesico.framework.service.codegen.model.ServiceElement;
import java.util.List;
public class RpcServiceElement {
/**
* Service element
*/
private final ServiceElement parentService;
/**
* RPC API implemented by service
*/
private final List rpcApiList;
public RpcServiceElement(ServiceElement parentService, List rpcApiList) {
this.parentService = parentService;
this.rpcApiList = rpcApiList;
}
public ServiceElement getParentService() {
return parentService;
}
public List getAllRpcApi() {
return rpcApiList;
}
}