package camelwatch.rest; import org.camelwatch.api.CamelBean; import org.camelwatch.api.CamelConnectionFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; import java.util.List; /** * @author Stephen K Samuel samspade79@gmail.com 2 Jul 2012 10:09:57 */ @Controller public class ProcessorRestEndpoint { @Autowired private CamelConnectionFactory connectionFactory; @RequestMapping(value = "/rest/processor", method = RequestMethod.GET) @ResponseBody public List<CamelBean> getConsumer() throws Exception { return connectionFactory.getConnection().getProcessors(); } @RequestMapping(value = "/rest/processor/{processorId}", method = RequestMethod.GET) @ResponseBody public CamelBean getConsumer(@PathVariable("processorId") String processorId) throws Exception { return connectionFactory.getConnection().getProcessor(processorId); } }