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

cn.tenfell.tools.nocontroller.utilsentity.ServiceCacheData Maven / Gradle / Ivy

package cn.tenfell.tools.nocontroller.utilsentity;

import java.lang.reflect.Method;
import java.util.List;
public class ServiceCacheData {
    String serviceName;
    Object service;
    List methods;
    public Object getService() {
        return service;
    }

    public void setService(Object service) {
        this.service = service;
    }

    public List getMethods() {
        return methods;
    }

    public void setMethods(List methods) {
        this.methods = methods;
    }

    public String getServiceName() {
        return serviceName;
    }

    public void setServiceName(String serviceName) {
        this.serviceName = serviceName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy