public interface SearchResource
Modifier and Type | Method and Description |
---|---|
CompanySearch |
searchCompanies(String fields,
String keywords,
String hq_only,
String facet,
String facets,
Long start,
Long count,
String sort) |
JobSearch |
searchJobs(String fields,
String keywords,
String company_name,
String job_title,
String country_code,
String postal_code,
Distance distance,
String facet,
String facets,
Long start,
Long count,
String sort) |
PeopleSearch |
searchPeople(String fields,
String keywords,
String first_name,
String last_name,
String company_name,
String current_company,
String title,
String current_title,
String school_name,
String current_school,
String country_code,
String postal_code,
Distance distance,
String facet,
String facets,
Long start,
Long count,
String sort) |
@GET @Produces(value="application/xml") @Path(value="/people-search{fields}") PeopleSearch searchPeople(@PathParam(value="fields") String fields, @QueryParam(value="keywords") String keywords, @QueryParam(value="first-name") String first_name, @QueryParam(value="last-name") String last_name, @QueryParam(value="company-name") String company_name, @QueryParam(value="current-company") String current_company, @QueryParam(value="title") String title, @QueryParam(value="current-title") String current_title, @QueryParam(value="school-name") String school_name, @QueryParam(value="current-school") String current_school, @QueryParam(value="country-code") String country_code, @QueryParam(value="postal-code") String postal_code, @QueryParam(value="distance") Distance distance, @QueryParam(value="facet") String facet, @QueryParam(value="facets") String facets, @QueryParam(value="start") Long start, @QueryParam(value="count") Long count, @QueryParam(value="sort") String sort)
@GET @Produces(value="application/xml") @Path(value="/company-search{fields}") CompanySearch searchCompanies(@PathParam(value="fields") String fields, @QueryParam(value="keywords") String keywords, @QueryParam(value="hq-only") String hq_only, @QueryParam(value="facet") String facet, @QueryParam(value="facets") String facets, @QueryParam(value="start") Long start, @QueryParam(value="count") Long count, @QueryParam(value="sort") String sort)
@GET @Produces(value="application/xml") @Path(value="/job-search{fields}") JobSearch searchJobs(@PathParam(value="fields") String fields, @QueryParam(value="keywords") String keywords, @QueryParam(value="company-name") String company_name, @QueryParam(value="job-title") String job_title, @QueryParam(value="country-code") String country_code, @QueryParam(value="postal-code") String postal_code, @QueryParam(value="distance") Distance distance, @QueryParam(value="facet") String facet, @QueryParam(value="facets") String facets, @QueryParam(value="start") Long start, @QueryParam(value="count") Long count, @QueryParam(value="sort") String sort)
Apache Camel