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

com.gitee.easyopen.bean.ApiInvocation Maven / Gradle / Ivy

Go to download

easyopen mini版,保留基本签名校验,文档功能。https://gitee.com/durcframework/easyopen

There is a newer version: 1.0.4
Show newest version
package com.gitee.easyopen.bean;

import com.gitee.easyopen.ApiMeta;

/**
 * @author tanghc
 */
public class ApiInvocation implements Invocation {

    private ApiMeta apiMeta;
    private Object argu;

    public ApiInvocation(ApiMeta apiMeta, Object argu) {
        this.apiMeta = apiMeta;
        this.argu = argu;
    }

    @Override
    public ApiMeta getApiMeta() {
        return apiMeta;
    }

    @Override
    public Object getArgu() {
        return argu;
    }

    @Override
    public Object process() throws Exception {
        Object invokeResult;
        if (argu == null) {
            invokeResult = apiMeta.getMethod().invoke(apiMeta.getHandler());
        } else {
            invokeResult = apiMeta.getMethod().invoke(apiMeta.getHandler(), argu);
        }
        return invokeResult;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy