| Package | Description |
|---|---|
| org.onosproject.net |
Network model entities & service API definitions.
|
| org.onosproject.net.host |
End-station host model & related services API definitions.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultHost
A basic implementation of a Host.
|
| Modifier and Type | Method and Description |
|---|---|
Host |
HostStore.getHost(HostId hostId)
Returns the host with the specified identifer.
|
Host |
HostService.getHost(HostId hostId)
Returns the host with the specified identifier.
|
| Modifier and Type | Method and Description |
|---|---|
Set<Host> |
HostStore.getConnectedHosts(ConnectPoint connectPoint)
Returns the set of hosts whose location falls on the given connection point.
|
Set<Host> |
HostService.getConnectedHosts(ConnectPoint connectPoint)
Returns the set of hosts whose most recent location is the specified
connection point.
|
Set<Host> |
HostStore.getConnectedHosts(DeviceId deviceId)
Returns the set of hosts whose location falls on the given device.
|
Set<Host> |
HostService.getConnectedHosts(DeviceId deviceId)
Returns the set of hosts whose most recent location is the specified
infrastructure device.
|
Iterable<Host> |
HostStore.getHosts()
Returns a collection of all hosts in the store.
|
Iterable<Host> |
HostService.getHosts()
Returns a collection of all end-station hosts.
|
Set<Host> |
HostStore.getHosts(org.onlab.packet.IpAddress ip)
Returns the set of hosts with the specified IP address.
|
Set<Host> |
HostStore.getHosts(org.onlab.packet.MacAddress mac)
Returns the set of hosts with the specified MAC address.
|
Set<Host> |
HostStore.getHosts(org.onlab.packet.VlanId vlanId)
Returns the set of all hosts within the specified VLAN.
|
Set<Host> |
HostService.getHostsByIp(org.onlab.packet.IpAddress ip)
Returns the set of hosts that have the specified IP address.
|
Set<Host> |
HostService.getHostsByMac(org.onlab.packet.MacAddress mac)
Returns the set of hosts that have the specified MAC address.
|
Set<Host> |
HostService.getHostsByVlan(org.onlab.packet.VlanId vlanId)
Returns the set of hosts that belong to the specified VLAN.
|
| Modifier and Type | Method and Description |
|---|---|
void |
HostProvider.triggerProbe(Host host)
Triggers an asynchronous probe of the specified host, intended to
determine whether the host is present or not.
|
| Constructor and Description |
|---|
HostEvent(HostEvent.Type type,
Host host)
Creates an event of a given type and for the specified host and the
current time.
|
HostEvent(HostEvent.Type type,
Host host,
long time)
Creates an event of a given type and for the specified host and time.
|
Copyright © 2015. All rights reserved.