public class PIF extends XenAPIObject
| Modifier and Type | Class and Description |
|---|---|
static class |
PIF.Record
Represents all the fields in a PIF
|
| Modifier and Type | Field and Description |
|---|---|
protected java.lang.String |
ref
The XenAPI reference to this object.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addToOtherConfig(Connection c,
java.lang.String key,
java.lang.String value)
Add the given key-value pair to the other_config field of the given PIF.
|
static PIF |
createVLAN(Connection c,
java.lang.String device,
Network network,
Host host,
java.lang.Long VLAN)
Deprecated.
|
static Task |
createVLANAsync(Connection c,
java.lang.String device,
Network network,
Host host,
java.lang.Long VLAN)
Deprecated.
|
void |
dbForget(Connection c)
Destroy a PIF database record.
|
Task |
dbForgetAsync(Connection c)
Destroy a PIF database record.
|
static PIF |
dbIntroduce(Connection c,
java.lang.String device,
Network network,
Host host,
java.lang.String MAC,
java.lang.Long MTU,
java.lang.Long VLAN,
java.lang.Boolean physical,
Types.IpConfigurationMode ipConfigurationMode,
java.lang.String IP,
java.lang.String netmask,
java.lang.String gateway,
java.lang.String DNS,
Bond bondSlaveOf,
VLAN VLANMasterOf,
java.lang.Boolean management,
java.util.Map<java.lang.String,java.lang.String> otherConfig,
java.lang.Boolean disallowUnplug)
Create a new PIF record in the database only
|
static Task |
dbIntroduceAsync(Connection c,
java.lang.String device,
Network network,
Host host,
java.lang.String MAC,
java.lang.Long MTU,
java.lang.Long VLAN,
java.lang.Boolean physical,
Types.IpConfigurationMode ipConfigurationMode,
java.lang.String IP,
java.lang.String netmask,
java.lang.String gateway,
java.lang.String DNS,
Bond bondSlaveOf,
VLAN VLANMasterOf,
java.lang.Boolean management,
java.util.Map<java.lang.String,java.lang.String> otherConfig,
java.lang.Boolean disallowUnplug)
Create a new PIF record in the database only
|
void |
destroy(Connection c)
Deprecated.
|
Task |
destroyAsync(Connection c)
Deprecated.
|
boolean |
equals(java.lang.Object obj)
If obj is a PIF, compares XenAPI references for equality.
|
void |
forget(Connection c)
Destroy the PIF object matching a particular network interface
|
Task |
forgetAsync(Connection c)
Destroy the PIF object matching a particular network interface
|
static java.util.Set<PIF> |
getAll(Connection c)
Return a list of all the PIFs known to the system.
|
static java.util.Map<PIF,PIF.Record> |
getAllRecords(Connection c)
Return a map of PIF references to PIF records for all PIFs known to the system.
|
java.util.Set<Bond> |
getBondMasterOf(Connection c)
Get the bond_master_of field of the given PIF.
|
Bond |
getBondSlaveOf(Connection c)
Get the bond_slave_of field of the given PIF.
|
static PIF |
getByUuid(Connection c,
java.lang.String uuid)
Get a reference to the PIF instance with the specified UUID.
|
java.lang.Boolean |
getCurrentlyAttached(Connection c)
Get the currently_attached field of the given PIF.
|
java.lang.String |
getDevice(Connection c)
Get the device field of the given PIF.
|
java.lang.Boolean |
getDisallowUnplug(Connection c)
Get the disallow_unplug field of the given PIF.
|
java.lang.String |
getDNS(Connection c)
Get the DNS field of the given PIF.
|
java.lang.String |
getGateway(Connection c)
Get the gateway field of the given PIF.
|
Host |
getHost(Connection c)
Get the host field of the given PIF.
|
java.lang.String |
getIP(Connection c)
Get the IP field of the given PIF.
|
Types.IpConfigurationMode |
getIpConfigurationMode(Connection c)
Get the ip_configuration_mode field of the given PIF.
|
java.lang.String |
getMAC(Connection c)
Get the MAC field of the given PIF.
|
java.lang.Boolean |
getManagement(Connection c)
Get the management field of the given PIF.
|
PIFMetrics |
getMetrics(Connection c)
Get the metrics field of the given PIF.
|
java.lang.Long |
getMTU(Connection c)
Get the MTU field of the given PIF.
|
java.lang.String |
getNetmask(Connection c)
Get the netmask field of the given PIF.
|
Network |
getNetwork(Connection c)
Get the network field of the given PIF.
|
java.util.Map<java.lang.String,java.lang.String> |
getOtherConfig(Connection c)
Get the other_config field of the given PIF.
|
java.lang.Boolean |
getPhysical(Connection c)
Get the physical field of the given PIF.
|
PIF.Record |
getRecord(Connection c)
Get a record containing the current state of the given PIF.
|
java.util.Set<Tunnel> |
getTunnelAccessPIFOf(Connection c)
Get the tunnel_access_PIF_of field of the given PIF.
|
java.util.Set<Tunnel> |
getTunnelTransportPIFOf(Connection c)
Get the tunnel_transport_PIF_of field of the given PIF.
|
java.lang.String |
getUuid(Connection c)
Get the uuid field of the given PIF.
|
java.lang.Long |
getVLAN(Connection c)
Get the VLAN field of the given PIF.
|
VLAN |
getVLANMasterOf(Connection c)
Get the VLAN_master_of field of the given PIF.
|
java.util.Set<VLAN> |
getVLANSlaveOf(Connection c)
Get the VLAN_slave_of field of the given PIF.
|
int |
hashCode() |
static PIF |
introduce(Connection c,
Host host,
java.lang.String MAC,
java.lang.String device)
Create a PIF object matching a particular network interface
|
static Task |
introduceAsync(Connection c,
Host host,
java.lang.String MAC,
java.lang.String device)
Create a PIF object matching a particular network interface
|
void |
plug(Connection c)
Attempt to bring up a physical interface
|
Task |
plugAsync(Connection c)
Attempt to bring up a physical interface
|
void |
reconfigureIp(Connection c,
Types.IpConfigurationMode mode,
java.lang.String IP,
java.lang.String netmask,
java.lang.String gateway,
java.lang.String DNS)
Reconfigure the IP address settings for this interface
|
Task |
reconfigureIpAsync(Connection c,
Types.IpConfigurationMode mode,
java.lang.String IP,
java.lang.String netmask,
java.lang.String gateway,
java.lang.String DNS)
Reconfigure the IP address settings for this interface
|
void |
removeFromOtherConfig(Connection c,
java.lang.String key)
Remove the given key and its corresponding value from the other_config field of the given PIF.
|
static void |
scan(Connection c,
Host host)
Scan for physical interfaces on a host and create PIF objects to represent them
|
static Task |
scanAsync(Connection c,
Host host)
Scan for physical interfaces on a host and create PIF objects to represent them
|
static java.util.Set<PIF> |
scanBios(Connection c,
Host host)
Scan for physical interfaces on a host and create PIF objects to represent them.
|
static Task |
scanBiosAsync(Connection c,
Host host)
Scan for physical interfaces on a host and create PIF objects to represent them.
|
void |
setDisallowUnplug(Connection c,
java.lang.Boolean disallowUnplug)
Set the disallow_unplug field of the given PIF.
|
void |
setOtherConfig(Connection c,
java.util.Map<java.lang.String,java.lang.String> otherConfig)
Set the other_config field of the given PIF.
|
java.lang.String |
toWireString() |
void |
unplug(Connection c)
Attempt to bring down a physical interface
|
Task |
unplugAsync(Connection c)
Attempt to bring down a physical interface
|
public java.lang.String toWireString()
toWireString in class XenAPIObjectpublic boolean equals(java.lang.Object obj)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic PIF.Record getRecord(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic static PIF getByUuid(Connection c, java.lang.String uuid) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
uuid - UUID of object to returnTypes.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.lang.String getUuid(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.lang.String getDevice(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic Network getNetwork(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic Host getHost(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.lang.String getMAC(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.lang.Long getMTU(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.lang.Long getVLAN(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic PIFMetrics getMetrics(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.lang.Boolean getPhysical(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.lang.Boolean getCurrentlyAttached(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic Types.IpConfigurationMode getIpConfigurationMode(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.lang.String getIP(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.lang.String getNetmask(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.lang.String getGateway(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.lang.String getDNS(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic Bond getBondSlaveOf(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.util.Set<Bond> getBondMasterOf(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic VLAN getVLANMasterOf(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.util.Set<VLAN> getVLANSlaveOf(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.lang.Boolean getManagement(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.util.Map<java.lang.String,java.lang.String> getOtherConfig(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.lang.Boolean getDisallowUnplug(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.util.Set<Tunnel> getTunnelAccessPIFOf(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic java.util.Set<Tunnel> getTunnelTransportPIFOf(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic void setOtherConfig(Connection c, java.util.Map<java.lang.String,java.lang.String> otherConfig) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
otherConfig - New value to setTypes.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic void addToOtherConfig(Connection c, java.lang.String key, java.lang.String value) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
key - Key to addvalue - Value to addTypes.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic void removeFromOtherConfig(Connection c, java.lang.String key) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
key - Key to removeTypes.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic void setDisallowUnplug(Connection c, java.lang.Boolean disallowUnplug) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
disallowUnplug - New value to setTypes.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcException@Deprecated public static Task createVLANAsync(Connection c, java.lang.String device, Network network, Host host, java.lang.Long VLAN) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException, Types.VlanTagInvalid
device - physical interface on which to create the VLAN interfacenetwork - network to which this interface should be connectedhost - physical machine to which this PIF is connectedVLAN - VLAN tag for the new interfaceTypes.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionTypes.VlanTagInvalid@Deprecated public static PIF createVLAN(Connection c, java.lang.String device, Network network, Host host, java.lang.Long VLAN) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException, Types.VlanTagInvalid
device - physical interface on which to create the VLAN interfacenetwork - network to which this interface should be connectedhost - physical machine to which this PIF is connectedVLAN - VLAN tag for the new interfaceTypes.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionTypes.VlanTagInvalid@Deprecated public Task destroyAsync(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException, Types.PifIsPhysical
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionTypes.PifIsPhysical@Deprecated public void destroy(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException, Types.PifIsPhysical
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionTypes.PifIsPhysicalpublic Task reconfigureIpAsync(Connection c, Types.IpConfigurationMode mode, java.lang.String IP, java.lang.String netmask, java.lang.String gateway, java.lang.String DNS) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
mode - whether to use dynamic/static/no-assignmentIP - the new IP addressnetmask - the new netmaskgateway - the new gatewayDNS - the new DNS settingsTypes.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic void reconfigureIp(Connection c, Types.IpConfigurationMode mode, java.lang.String IP, java.lang.String netmask, java.lang.String gateway, java.lang.String DNS) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
mode - whether to use dynamic/static/no-assignmentIP - the new IP addressnetmask - the new netmaskgateway - the new gatewayDNS - the new DNS settingsTypes.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic static Task scanAsync(Connection c, Host host) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
host - The host on which to scanTypes.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic static void scan(Connection c, Host host) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
host - The host on which to scanTypes.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic static Task scanBiosAsync(Connection c, Host host) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
host - The host on which to scanTypes.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic static java.util.Set<PIF> scanBios(Connection c, Host host) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
host - The host on which to scanTypes.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic static Task introduceAsync(Connection c, Host host, java.lang.String MAC, java.lang.String device) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
host - The host on which the interface existsMAC - The MAC address of the interfacedevice - The device name to use for the interfaceTypes.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic static PIF introduce(Connection c, Host host, java.lang.String MAC, java.lang.String device) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
host - The host on which the interface existsMAC - The MAC address of the interfacedevice - The device name to use for the interfaceTypes.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic Task forgetAsync(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException, Types.PifTunnelStillExists
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionTypes.PifTunnelStillExistspublic void forget(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException, Types.PifTunnelStillExists
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionTypes.PifTunnelStillExistspublic Task unplugAsync(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic void unplug(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic Task plugAsync(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException, Types.TransportPifNotConfigured
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionTypes.TransportPifNotConfiguredpublic void plug(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException, Types.TransportPifNotConfigured
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionTypes.TransportPifNotConfiguredpublic static Task dbIntroduceAsync(Connection c, java.lang.String device, Network network, Host host, java.lang.String MAC, java.lang.Long MTU, java.lang.Long VLAN, java.lang.Boolean physical, Types.IpConfigurationMode ipConfigurationMode, java.lang.String IP, java.lang.String netmask, java.lang.String gateway, java.lang.String DNS, Bond bondSlaveOf, VLAN VLANMasterOf, java.lang.Boolean management, java.util.Map<java.lang.String,java.lang.String> otherConfig, java.lang.Boolean disallowUnplug) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
device - network - host - MAC - MTU - VLAN - physical - ipConfigurationMode - IP - netmask - gateway - DNS - bondSlaveOf - VLANMasterOf - management - otherConfig - disallowUnplug - Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic static PIF dbIntroduce(Connection c, java.lang.String device, Network network, Host host, java.lang.String MAC, java.lang.Long MTU, java.lang.Long VLAN, java.lang.Boolean physical, Types.IpConfigurationMode ipConfigurationMode, java.lang.String IP, java.lang.String netmask, java.lang.String gateway, java.lang.String DNS, Bond bondSlaveOf, VLAN VLANMasterOf, java.lang.Boolean management, java.util.Map<java.lang.String,java.lang.String> otherConfig, java.lang.Boolean disallowUnplug) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
device - network - host - MAC - MTU - VLAN - physical - ipConfigurationMode - IP - netmask - gateway - DNS - bondSlaveOf - VLANMasterOf - management - otherConfig - disallowUnplug - Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic Task dbForgetAsync(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic void dbForget(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic static java.util.Set<PIF> getAll(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcExceptionpublic static java.util.Map<PIF,PIF.Record> getAllRecords(Connection c) throws Types.BadServerResponse, Types.XenAPIException, org.apache.xmlrpc.XmlRpcException
Types.BadServerResponseTypes.XenAPIExceptionorg.apache.xmlrpc.XmlRpcException