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

com.firefly.example.ioc.BarService Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.firefly.example.ioc;

import java.util.List;
import java.util.Map;

/**
 * @author Pengtao Qiu
 */
public interface BarService {

    List getFoods();

    Map getFoodPrices();

    String getBarName();

    FooService getFooService();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy