blob: 18292e199f042af4a64f37bb6d1b6e9f2640a1be [file] [log] [blame]
package brooklyn.location;
import java.net.InetAddress;
/**
* A location that is a machine.
*
* This interface marks a {@link Location} being a network node with an IP address,
* and supports appropriate operations on the node.
*/
public interface MachineLocation extends AddressableLocation {
/**
* @return the machine's network address.
*/
InetAddress getAddress();
OsDetails getOsDetails();
}