All Downloads are FREE. Search and download functionalities are using the official Maven repository.

colesico.framework.rpc.codegen.model.RpcServiceElement Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy