io.hawt.springboot.PluginService Maven / Gradle / Ivy
package io.hawt.springboot;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class PluginService {
@Autowired
List registeredPlugins;
@RequestMapping("/plugin")
@ResponseBody
public List getPlugins() {
return registeredPlugins;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy