Package org.wso2.msf4j.example
Class Country
- java.lang.Object
-
- org.wso2.msf4j.example.Country
-
@Path("/country") @Produces("application/json") public class Country extends java.lang.ObjectSub-resource root for country endpoints; delegates team lookups to the Team sub-resource.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CountrygetCountryId(java.lang.String countryId)TeamgetCountryTeam(java.lang.String countryId)CountrygetDefaultCountry()
-
-
-
Method Detail
-
getCountryTeam
@Path("/{countryId}/team") public Team getCountryTeam(@PathParam("countryId") java.lang.String countryId)
-
getDefaultCountry
@GET @Path("") public Country getDefaultCountry()
-
getCountryId
@GET @Path("/{countryId}") public Country getCountryId(@PathParam("countryId") java.lang.String countryId)
-
-