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

com.arextest.web.api.service.controller.config.ScheduleConfigurableController Maven / Gradle / Ivy

There is a newer version: 0.7.0.1
Show newest version
package com.arextest.web.api.service.controller.config;

import com.arextest.web.core.business.config.ConfigurableHandler;
import com.arextest.web.model.contract.contracts.config.replay.ScheduleConfiguration;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

/**
 * @author jmo
 * @since 2022/1/22
 */
@Controller
@RequestMapping("/api/config/schedule")
public class ScheduleConfigurableController extends
    AbstractConfigurableController {

  public ScheduleConfigurableController(
      @Autowired ConfigurableHandler configurableHandler) {
    super(configurableHandler);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy