Class OwnersEndpoint

java.lang.Object
pl.allegro.tech.hermes.management.api.OwnersEndpoint

@Component @Path("/owners") public class OwnersEndpoint extends Object
  • Constructor Details

    • OwnersEndpoint

      @Autowired public OwnersEndpoint(OwnerSources ownerSources)
  • Method Details

    • search

      @GET @Path("/sources/{source}") @Produces("application/json") public List<pl.allegro.tech.hermes.api.Owner> search(@PathParam("source") String source, @QueryParam("search") String searchString)
    • get

      @GET @Path("/sources/{source}/{id}") @Produces("application/json") public pl.allegro.tech.hermes.api.Owner get(@PathParam("source") String source, @PathParam("id") String id)
    • listSources

      @GET @Path("/sources") @Produces("application/json") public List<pl.allegro.tech.hermes.management.api.OwnersEndpoint.SourceDescriptor> listSources()