test.org.benow.service
Interface TutorialService

All Superinterfaces:
org.benow.java.spec.Markup, org.benow.service.Service
All Known Implementing Classes:
TutorialServiceImpl

public interface TutorialService
extends org.benow.service.Service

A service created for the Creating Services tutorial. Demonstrates basic service usage.

Author:
andy

Nested Class Summary
 
Nested classes/interfaces inherited from interface org.benow.java.spec.Markup
org.benow.java.spec.Markup.ParamName, org.benow.java.spec.Markup.ReturnDescription
 
Method Summary
 java.util.List<test.org.benow.service.Person> getPeople()
           
 java.util.List<test.org.benow.service.Person> getPeopleInCity(java.lang.String city)
           
 java.util.List<test.org.benow.service.Person> getPeopleOfHeight(int heightInCM)
           
 

Method Detail

getPeople

java.util.List<test.org.benow.service.Person> getPeople()
Returns:
all known people

getPeopleInCity

java.util.List<test.org.benow.service.Person> getPeopleInCity(java.lang.String city)
Parameters:
city - city to fetch people for
Returns:
known people within the given city

getPeopleOfHeight

java.util.List<test.org.benow.service.Person> getPeopleOfHeight(int heightInCM)
Parameters:
heightInCM - minimum height of people to return
Returns:
known people of the given minimum height