Merge "Implement PortNumberBuilder"
[controller.git] / opendaylight / md-sal / samples / toaster-consumer / src / main / java / org / opendaylight / controller / sample / kitchen / api / KitchenService.java
1 package org.opendaylight.controller.sample.kitchen.api;
2
3 import org.opendaylight.yang.gen.v1.http.netconfcentral.org.ns.toaster.rev091120.ToastType;
4
5 public interface KitchenService {
6     boolean makeBreakfast( EggsType eggs, Class<? extends ToastType> toast, int toastDoneness );
7 }