This commit is contained in:
Keith Donald 2009-05-06 19:28:33 +00:00 committed by Mic
parent 75504b859f
commit d4fc5b036b

View file

@ -0,0 +1,16 @@
package org.springframework.samples.petclinic.appointments;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
@RequestMapping("/appointments")
public class AppointmentsController {
@RequestMapping(method = RequestMethod.GET)
public void get() {
}
}