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

com.github.quartzwebui.service.strategy.ServiceStrategy Maven / Gradle / Ivy

The newest version!
/**
 * Licensed under the Apache License, Version 2.0 (the "License");
 */
package com.github.quartzwebui.service.strategy;

import com.github.quartzwebui.service.JSONResult;

/**
 * 服务处理策略接口
 * @author quxiucheng [[email protected]]
 * @param  接口参数
 */
public interface ServiceStrategy {

    /**
     * 业务处理
     * @param serviceStrategyURL 处理URL类
     * @param parameter 参数
     * @return 返回JSON数据
     */
    public JSONResult service(ServiceStrategyURL serviceStrategyURL, T parameter);


    /**
     * 实例化接口参数
     * @return 接口参数
     */
    public T newServiceStrategyParameterInstance();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy