public interface HealthMonitorApi
Modifier and Type | Method and Description |
---|---|
void |
createOrUpdate(HealthMonitor healthMonitor)
Create or update a health monitor.
|
boolean |
delete()
Delete health monitor.
|
HealthMonitor |
get()
Get health monitor.
|
@Named(value="healthmonitor:create") @PUT @Consumes(value="application/json") @Path(value="/healthmonitor") void createOrUpdate(HealthMonitor healthMonitor)
@Named(value="healthmonitor:get") @GET @Consumes(value="application/json") @Path(value="/healthmonitor") HealthMonitor get()
@Named(value="healthmonitor:delete") @DELETE @Path(value="/healthmonitor") @Consumes(value="*/*") boolean delete()
Copyright © 2009-2018 The Apache Software Foundation. All Rights Reserved.