Uses of Interface
com.eurotech.framework.net.NetConfig

Packages that use NetConfig
com.eurotech.framework.core.net   
com.eurotech.framework.core.net.modem   
com.eurotech.framework.net   
com.eurotech.framework.net.admin   
com.eurotech.framework.net.admin.modem   
com.eurotech.framework.net.admin.modem.sierra.usb598   
com.eurotech.framework.net.admin.modem.telit.de910   
com.eurotech.framework.net.admin.modem.telit.he910   
com.eurotech.framework.net.dhcp   
com.eurotech.framework.net.dns   
com.eurotech.framework.net.firewall   
com.eurotech.framework.net.modem   
com.eurotech.framework.net.route   
com.eurotech.framework.net.wifi   
 

Uses of NetConfig in com.eurotech.framework.core.net
 

Methods in com.eurotech.framework.core.net that return types with arguments of type NetConfig
 List<NetConfig> WifiInterfaceAddressConfigImpl.getConfigs()
           
 List<NetConfig> NetInterfaceAddressConfigImpl.getConfigs()
           
 

Methods in com.eurotech.framework.core.net with parameters of type NetConfig
 void NetworkConfiguration.addNetConfig(String interfaceName, NetInterfaceType netInterfaceType, NetConfig netConfig)
           
 

Method parameters in com.eurotech.framework.core.net with type arguments of type NetConfig
 void WifiInterfaceAddressConfigImpl.setNetConfigs(List<NetConfig> configs)
           
 void NetInterfaceAddressConfigImpl.setNetConfigs(List<NetConfig> configs)
           
 

Uses of NetConfig in com.eurotech.framework.core.net.modem
 

Methods in com.eurotech.framework.core.net.modem that return types with arguments of type NetConfig
 List<NetConfig> ModemInterfaceAddressConfigImpl.getConfigs()
           
 

Method parameters in com.eurotech.framework.core.net.modem with type arguments of type NetConfig
 void ModemInterfaceAddressConfigImpl.setNetConfigs(List<NetConfig> configs)
           
 

Uses of NetConfig in com.eurotech.framework.net
 

Subinterfaces of NetConfig in com.eurotech.framework.net
 interface NetConfig4
          Marker interface for IPv4-based configurations of network interfaces
 interface NetConfig6
          Marker interface for IPv6-based configurations of network interfaces
 

Classes in com.eurotech.framework.net that implement NetConfig
 class NetConfigIP<T extends IPAddress>
          Base class for configuration of network interfaces.
 class NetConfigIP4
          Configuration for a network interface based on IPv4 addresses.
 class NetConfigIP6
          Configuration for a network interface based on IPv6 addresses.
 

Methods in com.eurotech.framework.net that return types with arguments of type NetConfig
 List<NetConfig> NetInterfaceAddressConfig.getConfigs()
          Returns a List of NetConfig Objects associated with a given NetInterfaceAddressConfig for a given NetInterface
 List<NetConfig> NetworkAdminService.getFirewallConfiguration()
          Gets the firewall configuration of the system as currently specified
 List<NetConfig> NetworkAdminService.getNetworkInterfaceConfigs(String interfaceName)
          Returns the configuration information for the specified NetworkInterface name.
 

Method parameters in com.eurotech.framework.net with type arguments of type NetConfig
 void NetworkAdminService.updateEthernetInterfaceConfig(String interfaceName, boolean autoConnect, int mtu, List<NetConfig> netConfigs)
          Updates the configuration of the specified EthernetInterface.
 void NetworkAdminService.updateModemInterfaceConfig(String interfaceName, String serialNum, String modemId, int pppNumber, boolean autoConnect, int mtu, List<NetConfig> netConfigs)
          Updates the configuration of the specified ModemInterface.
 void NetworkAdminService.updateWifiInterfaceConfig(String interfaceName, boolean autoConnect, WifiAccessPoint accessPoint, List<NetConfig> netConfigs)
          Updates the configuration of the specified WifiInterface.
 

Uses of NetConfig in com.eurotech.framework.net.admin
 

Methods in com.eurotech.framework.net.admin that return types with arguments of type NetConfig
 List<NetConfig> NetworkAdminServiceImpl.getFirewallConfiguration()
           
 List<NetConfig> NetworkAdminServiceImpl.getNetworkInterfaceConfigs(String interfaceName)
           
 

Method parameters in com.eurotech.framework.net.admin with type arguments of type NetConfig
 void NetworkAdminServiceImpl.updateEthernetInterfaceConfig(String interfaceName, boolean autoConnect, int mtu, List<NetConfig> netConfigs)
           
 void NetworkAdminServiceImpl.updateModemInterfaceConfig(String interfaceName, String serialNum, String modemId, int pppNumber, boolean autoConnect, int mtu, List<NetConfig> netConfigs)
           
 void NetworkAdminServiceImpl.updateWifiInterfaceConfig(String interfaceName, boolean autoConnect, WifiAccessPoint accessPoint, List<NetConfig> netConfigs)
           
 

Uses of NetConfig in com.eurotech.framework.net.admin.modem
 

Methods in com.eurotech.framework.net.admin.modem that return types with arguments of type NetConfig
 List<NetConfig> CellularModem.getConfiguration()
           
 

Method parameters in com.eurotech.framework.net.admin.modem with type arguments of type NetConfig
 void CellularModem.setConfiguration(List<NetConfig> netConfigs)
           
 

Uses of NetConfig in com.eurotech.framework.net.admin.modem.sierra.usb598
 

Methods in com.eurotech.framework.net.admin.modem.sierra.usb598 that return types with arguments of type NetConfig
 List<NetConfig> SierraUsb598.getConfiguration()
           
 

Method parameters in com.eurotech.framework.net.admin.modem.sierra.usb598 with type arguments of type NetConfig
 void SierraUsb598.setConfiguration(List<NetConfig> netConfigs)
           
 

Uses of NetConfig in com.eurotech.framework.net.admin.modem.telit.de910
 

Methods in com.eurotech.framework.net.admin.modem.telit.de910 that return types with arguments of type NetConfig
 List<NetConfig> TelitDe910.getConfiguration()
           
 

Method parameters in com.eurotech.framework.net.admin.modem.telit.de910 with type arguments of type NetConfig
 void TelitDe910.setConfiguration(List<NetConfig> netConfigs)
           
 

Uses of NetConfig in com.eurotech.framework.net.admin.modem.telit.he910
 

Methods in com.eurotech.framework.net.admin.modem.telit.he910 that return types with arguments of type NetConfig
 List<NetConfig> TelitHe910.getConfiguration()
           
 

Method parameters in com.eurotech.framework.net.admin.modem.telit.he910 with type arguments of type NetConfig
 void TelitHe910.setConfiguration(List<NetConfig> netConfigs)
           
 

Uses of NetConfig in com.eurotech.framework.net.dhcp
 

Subinterfaces of NetConfig in com.eurotech.framework.net.dhcp
 interface DhcpServerConfig
          Marker interface for all DHCP server configuration classes
 interface DhcpServerConfig4
          Marker interface for IPv4-based configurations of DHCP Servers
 interface DhcpServerConfig6
          Marker interface for IPv6-based configurations of DHCP Servers
 

Classes in com.eurotech.framework.net.dhcp that implement NetConfig
 class DhcpServerConfigIP<T extends IPAddress>
          The abstract representation of a DhcpServerConfig object.
 class DhcpServerConfigIP4
          The configuration representing a DHCP server configuration for an IPv4 network.
 class DhcpServerConfigIP6
          The configuration representing a DHCP server configuration for an IPv6 network.
 

Uses of NetConfig in com.eurotech.framework.net.dns
 

Subinterfaces of NetConfig in com.eurotech.framework.net.dns
 interface DnsServerConfig
          The placeholder for all DNS proxy servers
 interface DnsServerConfig4
          Placeholder for IPv4 DNS server configurations
 interface DnsServerConfig6
          Placeholder for IPv6 DNS server configurations
 

Classes in com.eurotech.framework.net.dns that implement NetConfig
 class DnsServerConfigIP<T extends IPAddress>
          Base class for DNS proxy configurations
 class DnsServerConfigIP4
          DNS server configurations for IPv4 networks
 class DnsServerConfigIP6
          DNS server configurations for IPv6 networks
 

Uses of NetConfig in com.eurotech.framework.net.firewall
 

Subinterfaces of NetConfig in com.eurotech.framework.net.firewall
 interface FirewallOpenPortConfig
          Marker interface for firewall open port configurations
 interface FirewallOpenPortConfig4
          Marker interface for IPv4 firewall open port configurations
 interface FirewallPortForwardConfig
          Marker interface for firewall port forward configurations
 interface FirewallPortForwardConfig4
          Marker interface for IPv4 firewall port forward configurations
 

Classes in com.eurotech.framework.net.firewall that implement NetConfig
 class FirewallNatConfig
          Represents a NAT configuration
 class FirewallOpenPortConfigIP<T extends IPAddress>
          The base class for firewall open port configurations
 class FirewallOpenPortConfigIP4
          The implementation of IPv4 firewall open port configurations
 class FirewallPortForwardConfigIP<T extends IPAddress>
          The base class for firewall port forward configurations
 class FirewallPortForwardConfigIP4
           
 

Uses of NetConfig in com.eurotech.framework.net.modem
 

Classes in com.eurotech.framework.net.modem that implement NetConfig
 class ModemConfig
          Modem configuration representation
 

Methods in com.eurotech.framework.net.modem that return types with arguments of type NetConfig
 List<NetConfig> ModemInterfaceAddressConfig.getConfigs()
          Returns a List of NetConfig Objects associated with a given ModemInterfaceAddressConfig for a given ModemInterface
 

Uses of NetConfig in com.eurotech.framework.net.route
 

Subinterfaces of NetConfig in com.eurotech.framework.net.route
 interface RouteConfig
          Route configuration interface
 interface RouteConfig4
          Marker interface for IPv4 route configs
 interface RouteConfig6
          Marker interface for IPv6 route configs
 

Classes in com.eurotech.framework.net.route that implement NetConfig
 class RouteConfigIP<T extends IPAddress>
          Base class for Route configurations
 class RouteConfigIP4
          Implementation of IPv4 route configurations
 class RouteConfigIP6
          Implementation of IPv6 route configurations
 

Uses of NetConfig in com.eurotech.framework.net.wifi
 

Classes in com.eurotech.framework.net.wifi that implement NetConfig
 class WifiConfig
          Configuration for a wifi interface based on IPv4 addresses.
 

Methods in com.eurotech.framework.net.wifi that return types with arguments of type NetConfig
 List<NetConfig> WifiInterfaceAddressConfig.getConfigs()
          Returns a List of NetConfig Objects associated with a given WifiInterfaceAddressConfig for a given WifiInterface
 



Copyright © 2013. All Rights Reserved.