[DO NOT MERGE]
[controller.git] / opendaylight / ping / service / src / main / java / org / opendaylight / controller / ping / service / api / PingServiceAPI.java
1 package org.opendaylight.controller.ping.service.api;
2
3
4 public interface PingServiceAPI {
5
6     /**
7      * pingDestination
8      *
9      * @param address An IPv4 address to be pinged
10      * @return True if address is reachable,
11      * false if address is unreachable or error occurs.
12      */
13     boolean pingDestination(String address);
14 }
15