|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of IPAddress in com.eurotech.framework.core.net |
---|
Methods in com.eurotech.framework.core.net that return IPAddress | |
---|---|
IPAddress |
NetInterfaceAddressImpl.getAddress()
|
IPAddress |
NetInterfaceAddressImpl.getBroadcast()
|
IPAddress |
NetInterfaceAddressImpl.getGateway()
|
IPAddress |
NetInterfaceAddressImpl.getNetmask()
|
Methods in com.eurotech.framework.core.net that return types with arguments of type IPAddress | |
---|---|
List<? extends IPAddress> |
NetInterfaceAddressImpl.getDnsServers()
|
Methods in com.eurotech.framework.core.net with parameters of type IPAddress | |
---|---|
void |
NetInterfaceAddressImpl.setAddress(IPAddress address)
|
void |
NetInterfaceAddressImpl.setBroadcast(IPAddress broadcast)
|
void |
NetInterfaceAddressImpl.setGateway(IPAddress gateway)
|
void |
NetInterfaceAddressImpl.setNetmask(IPAddress netmask)
|
Method parameters in com.eurotech.framework.core.net with type arguments of type IPAddress | |
---|---|
void |
NetInterfaceAddressImpl.setDnsServers(List<? extends IPAddress> dnsAddresses)
|
Uses of IPAddress in com.eurotech.framework.linux.net.dns |
---|
Methods in com.eurotech.framework.linux.net.dns that return types with arguments of type IPAddress | |
---|---|
List<IPAddress> |
LinuxDns.getDhcpDnsServers(String interfaceName,
IPAddress address)
|
List<IPAddress> |
LinuxDns.getDnServers()
|
Methods in com.eurotech.framework.linux.net.dns with parameters of type IPAddress | |
---|---|
void |
LinuxDns.addDnsServer(IPAddress serverIpAddress)
|
List<IPAddress> |
LinuxDns.getDhcpDnsServers(String interfaceName,
IPAddress address)
|
void |
LinuxDns.removeDnsServer(IPAddress serverIpAddress)
|
Uses of IPAddress in com.eurotech.framework.linux.net.route |
---|
Methods in com.eurotech.framework.linux.net.route with parameters of type IPAddress | |
---|---|
boolean |
RouteFile.addRoute(IPAddress destination,
IPAddress gateway,
IPAddress netmask,
String ifaceName)
|
void |
RouteServiceImpl.addStaticRoute(IPAddress destination,
IPAddress gateway,
IPAddress netmask,
String iface,
int metric)
|
void |
IRouteService.addStaticRoute(IPAddress destination,
IPAddress gateway,
IPAddress netmask,
String iface,
int metric)
Adds a static route to the system's route table. |
String |
RouteServiceImpl.getDefaultInterface(IPAddress destination)
|
String |
IRouteService.getDefaultInterface(IPAddress destination)
Returns the default route's interface for the specified destination address, or null if no route exists. |
boolean |
RouteFile.removeRoute(IPAddress destination,
IPAddress gateway,
IPAddress netmask,
String iface)
|
void |
RouteServiceImpl.removeStaticRoute(IPAddress destination,
IPAddress gateway,
IPAddress netmask,
String iface)
|
void |
IRouteService.removeStaticRoute(IPAddress destination,
IPAddress gateway,
IPAddress netmask,
String iface)
Removes a static route in the system's route table. |
Uses of IPAddress in com.eurotech.framework.net |
---|
Classes in com.eurotech.framework.net with type parameters of type IPAddress | |
---|---|
class |
NetConfigIP<T extends IPAddress>
Base class for configuration of network interfaces. |
class |
NetworkPair<T extends IPAddress>
Model class for a 'network' that is specified by an IP and a mask. |
Subclasses of IPAddress in com.eurotech.framework.net | |
---|---|
class |
IP4Address
This class represents an Internet Protocol version 4 (IPv4) address. |
class |
IP6Address
This class represents an Internet Protocol version 6 (IPv6) address. |
Fields in com.eurotech.framework.net declared as IPAddress | |
---|---|
T |
NetworkPair.m_ipAddress
The IP Address portion of the NetworkPair |
Methods in com.eurotech.framework.net that return IPAddress | |
---|---|
IPAddress |
NetInterfaceAddress.getAddress()
Returns an InetAddress for this address. |
IPAddress |
NetInterfaceAddress.getBroadcast()
Returns an InetAddress for the broadcast address for this InterfaceAddress. |
static IPAddress |
IPAddress.getByAddress(byte[] addr)
Returns an InetAddress object given the raw IP address. |
static IPAddress |
IPAddress.getByAddress(int addr)
|
IPAddress |
NetInterfaceAddress.getGateway()
Returns the InetAddress for the gateway. |
IPAddress |
NetInterfaceAddress.getNetmask()
Returns the network mask for this address Typical IPv4 values would be 255.0.0.0, 255.255.0.0 or 255.255.255.0. |
static IPAddress |
IPAddress.parseHostAddress(String hostAddress)
Parse a literal representation of an IP address and returns the corresponding IPAddress class. |
Methods in com.eurotech.framework.net that return types with arguments of type IPAddress | |
---|---|
List<? extends IPAddress> |
NetInterfaceAddress.getDnsServers()
Gets the list of DNS servers associated with this interface |
Method parameters in com.eurotech.framework.net with type arguments of type IPAddress | |
---|---|
void |
NetworkAdminService.setFirewallOpenPortConfiguration(List<FirewallOpenPortConfigIP<? extends IPAddress>> firewallConfiguration)
Sets the 'open port' portion of the firewall configuration |
void |
NetworkAdminService.setFirewallPortForwardingConfiguration(List<FirewallPortForwardConfigIP<? extends IPAddress>> firewallConfiguration)
Sets the 'port forwarding' portion of the firewall configuration |
Uses of IPAddress in com.eurotech.framework.net.admin |
---|
Method parameters in com.eurotech.framework.net.admin with type arguments of type IPAddress | |
---|---|
void |
NetworkAdminServiceImpl.setFirewallOpenPortConfiguration(List<FirewallOpenPortConfigIP<? extends IPAddress>> firewallConfiguration)
|
void |
NetworkAdminServiceImpl.setFirewallPortForwardingConfiguration(List<FirewallPortForwardConfigIP<? extends IPAddress>> firewallConfiguration)
|
Uses of IPAddress in com.eurotech.framework.net.admin.monitor |
---|
Methods in com.eurotech.framework.net.admin.monitor that return IPAddress | |
---|---|
IPAddress |
InterfaceState.getIpAddress()
|
Constructors in com.eurotech.framework.net.admin.monitor with parameters of type IPAddress | |
---|---|
InterfaceState(String interfaceName,
boolean up,
boolean link,
IPAddress ipAddress)
|
Uses of IPAddress in com.eurotech.framework.net.dhcp |
---|
Classes in com.eurotech.framework.net.dhcp with type parameters of type IPAddress | |
---|---|
class |
DhcpServerConfigIP<T extends IPAddress>
The abstract representation of a DhcpServerConfig object. |
Methods in com.eurotech.framework.net.dhcp that return IPAddress | |
---|---|
IPAddress |
DhcpServerConfig.getRangeEnd()
Returns the ending DHCP server InetAddress to provide to DHCP clients. |
IPAddress |
DhcpServerConfig.getRangeStart()
Returns the starting DHCP server InetAddress to provide to DHCP clients. |
IPAddress |
DhcpServerConfig.getRouterAddress()
Returns the router IP address associated with this DhcpServerConfig |
IPAddress |
DhcpServerConfig.getSubnet()
Returns the subnet associated with this DhcpServerConfig |
IPAddress |
DhcpServerConfig.getSubnetMask()
Returns the subnet mask associated with this DhcpServerConfig |
Methods in com.eurotech.framework.net.dhcp that return types with arguments of type IPAddress | |
---|---|
List<? extends IPAddress> |
DhcpServerConfig.getDnsServers()
Returns the DNS servers associated with this DhcpServerConfig that will be passed to DHCP clients |
Uses of IPAddress in com.eurotech.framework.net.dns |
---|
Classes in com.eurotech.framework.net.dns with type parameters of type IPAddress | |
---|---|
class |
DnsServerConfigIP<T extends IPAddress>
Base class for DNS proxy configurations |
Methods in com.eurotech.framework.net.dns that return types with arguments of type IPAddress | |
---|---|
List<? extends NetworkPair<? extends IPAddress>> |
DnsServerConfig.getAllowedNetworks()
returns the allowed networks for resolving DNS queries |
List<? extends IPAddress> |
DnsServerConfig.getForwarders()
returns the DNS forwarders associated with this DnsServerConfig |
Uses of IPAddress in com.eurotech.framework.net.firewall |
---|
Classes in com.eurotech.framework.net.firewall with type parameters of type IPAddress | |
---|---|
class |
FirewallOpenPortConfigIP<T extends IPAddress>
The base class for firewall open port configurations |
class |
FirewallPortForwardConfigIP<T extends IPAddress>
The base class for firewall port forward configurations |
Methods in com.eurotech.framework.net.firewall that return types with arguments of type IPAddress | |
---|---|
NetworkPair<? extends IPAddress> |
FirewallPortForwardConfig.getPermittedNetwork()
Gets the (optional) permitted remote network that can make inbound connections |
NetworkPair<? extends IPAddress> |
FirewallOpenPortConfig.getPermittedNetwork()
Gets the (optional) permitted remote network that can make inbound connections |
Uses of IPAddress in com.eurotech.framework.net.modem |
---|
Methods in com.eurotech.framework.net.modem that return IPAddress | |
---|---|
IPAddress |
ModemConfig.getIpAddress()
Reports PDP IP address. |
Methods in com.eurotech.framework.net.modem with parameters of type IPAddress | |
---|---|
void |
ModemConfig.setIpAddress(IPAddress address)
Sets PDP IP address. |
Constructors in com.eurotech.framework.net.modem with parameters of type IPAddress | |
---|---|
ModemConfig(int profileID,
ModemConfig.PdpType pdpType,
String apn,
IPAddress ipAddress,
int dataCompression,
int headerCompresion)
PDP config constructor |
Uses of IPAddress in com.eurotech.framework.net.route |
---|
Classes in com.eurotech.framework.net.route with type parameters of type IPAddress | |
---|---|
class |
RouteConfigIP<T extends IPAddress>
Base class for Route configurations |
Methods in com.eurotech.framework.net.route that return IPAddress | |
---|---|
IPAddress |
RouteConfig.getDestination()
Gets the destination of the route |
IPAddress |
RouteConfig.getGateway()
Gets the gateway of the route |
IPAddress |
RouteConfig.getNetmask()
Gets the network mask of the route |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |